Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MokkeMeguru committed Jun 30, 2020
1 parent 86f854e commit b05b19a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,6 @@ jobs:

steps:
- uses: actions/checkout@v2
# - name: cache pipenv
# uses: actions/cache@v1
# env:
# cache-name: cache-pipenv
# with:
# path: /home/runner/.local/share/virtualenvs
# key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Pipfile') }}
# restore-keys: |
# ${{ runner.os }}-build-${{ env.cache-name }}-
# ${{ runner.os }}-build-
# ${{ runner.os }}-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
Expand All @@ -32,6 +21,17 @@ jobs:
python -m pip install --upgrade pip
python -m pip install pipenv
python -m pipenv install
- name: cache pipenv
uses: actions/cache@v1
env:
cache-name: cache-pipenv
with:
path: /home/runner/.local/share/virtualenvs
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Pipfile') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Lint with flake8
run: |
pip install flake8
Expand Down

0 comments on commit b05b19a

Please sign in to comment.