Skip to content

Commit 50c09a4

Browse files
committed
Updated github actions
1 parent b6368ed commit 50c09a4

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,12 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
include:
14-
- python-version: "2.7"
15-
tox-env: py27
16-
- python-version: "3.6"
17-
tox-env: py36
18-
- python-version: "3.7"
19-
tox-env: py37,docs,readme,black
2014
- python-version: "3.8"
2115
tox-env: py38
2216
- python-version: "3.9"
2317
tox-env: py39
2418
- python-version: "3.10"
25-
tox-env: py310
19+
tox-env: py310,docs,readme,ruff
2620
- python-version: "3.11"
2721
tox-env: py311
2822
- python-version: "3.12"
@@ -41,7 +35,6 @@ jobs:
4135
python -m pip install --upgrade pip setuptools
4236
python -m pip install tox
4337
- name: Install coveralls dependencies
44-
if: ${{ matrix.python-version != '2.7' }}
4538
run: |
4639
python -m pip install coveralls coverage-lcov toml
4740
- name: Execute tests with tox
@@ -50,12 +43,10 @@ jobs:
5043
run: |
5144
tox
5245
- name: Coverage format into lcov
53-
if: ${{ matrix.python-version != '2.7' }}
5446
run: |
5547
coverage-lcov --output_file_path lcov.info
5648
- name: Coveralls Parallel
5749
uses: coverallsapp/github-action@1.1.3
58-
if: ${{ matrix.python-version != '2.7' }}
5950
with:
6051
github-token: ${{ secrets.github_token }}
6152
flag-name: run-${{ matrix.python-version }}

0 commit comments

Comments
 (0)