mirror of
https://github.com/Hopiu/django-uuslug.git
synced 2026-03-16 20:10:24 +00:00
add upgrade github/action
This commit is contained in:
parent
8ec8295986
commit
afb681f4a0
3 changed files with 9 additions and 9 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -32,15 +32,15 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -e .
|
pip install -e .
|
||||||
pip install coveralls
|
pip install coveralls --upgrade
|
||||||
pip install "django~=${{ matrix.django-version }}.0"
|
pip install "django~=${{ matrix.django-version }}.0"
|
||||||
- name: Run flake8
|
- name: Run flake8
|
||||||
run: |
|
run: |
|
||||||
pip install flake8
|
pip install flake8 --upgrade
|
||||||
flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
||||||
- name: Run pycodestyle
|
- name: Run pycodestyle
|
||||||
run: |
|
run: |
|
||||||
pip install pycodestyle
|
pip install pycodestyle --upgrade
|
||||||
pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
||||||
- name: Run test
|
- name: Run test
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
6
.github/workflows/dev.yml
vendored
6
.github/workflows/dev.yml
vendored
|
|
@ -35,15 +35,15 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -e .
|
pip install -e .
|
||||||
pip install coveralls
|
pip install coveralls --upgrade
|
||||||
pip install "django~=${{ matrix.django-version }}.0"
|
pip install "django~=${{ matrix.django-version }}.0"
|
||||||
- name: Run flake8
|
- name: Run flake8
|
||||||
run: |
|
run: |
|
||||||
pip install flake8
|
pip install flake8 --upgrade
|
||||||
flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
||||||
- name: Run pycodestyle
|
- name: Run pycodestyle
|
||||||
run: |
|
run: |
|
||||||
pip install pycodestyle
|
pip install pycodestyle --upgrade
|
||||||
pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
||||||
- name: Run test
|
- name: Run test
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
|
@ -33,15 +33,15 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -e .
|
pip install -e .
|
||||||
pip install coveralls
|
pip install coveralls --upgrade
|
||||||
pip install "django~=${{ matrix.django-version }}.0"
|
pip install "django~=${{ matrix.django-version }}.0"
|
||||||
- name: Run flake8
|
- name: Run flake8
|
||||||
run: |
|
run: |
|
||||||
pip install flake8
|
pip install flake8 --upgrade
|
||||||
flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
||||||
- name: Run pycodestyle
|
- name: Run pycodestyle
|
||||||
run: |
|
run: |
|
||||||
pip install pycodestyle
|
pip install pycodestyle --upgrade
|
||||||
pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 .
|
||||||
- name: Run test
|
- name: Run test
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue