Skip to content

Commit

Permalink
add upgrade github/actions
Browse files Browse the repository at this point in the history
  • Loading branch information
un33k committed Jan 31, 2022
1 parent 335a568 commit 04c6239
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -e .
pip install coveralls
pip install coveralls --upgrade
pip install "django~=${{ matrix.django-version }}.0"
- name: Run flake8
run: |
pip install flake8
pip install flake8 --upgrade
flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
- name: Run pycodestyle
run: |
pip install pycodestyle
pip install pycodestyle --upgrade
pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
- name: Run test
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -e .
pip install coveralls
pip install coveralls --upgrade
pip install "django~=${{ matrix.django-version }}.0"
- name: Run flake8
run: |
pip install flake8
pip install flake8 --upgrade
flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
- name: Run pycodestyle
run: |
pip install pycodestyle
pip install pycodestyle --upgrade
pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
- name: Run test
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -e .
pip install coveralls
pip install coveralls --upgrade
pip install "django~=${{ matrix.django-version }}.0"
- name: Run flake8
run: |
pip install flake8
pip install flake8 --upgrade
flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
- name: Run pycodestyle
run: |
pip install pycodestyle
pip install pycodestyle --upgrade
pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
- name: Run test
run: |
Expand Down

0 comments on commit 04c6239

Please sign in to comment.