We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb6d415 commit 31a7e37Copy full SHA for 31a7e37
.github/workflows/test.yml
@@ -7,6 +7,15 @@ on:
7
pull_request:
8
9
jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Install Tox
15
+ run: pip install tox
16
+ - name: Lint with tox
17
+ run: tox run -e lint
18
+
19
tests:
20
runs-on: ${{ matrix.os }}
21
strategy:
@@ -22,10 +31,9 @@ jobs:
22
31
python-version: ${{ matrix.python-version }}
23
32
- name: Install dependencies
24
33
run: |
25
- python -m pip install --upgrade pip
26
34
pip install tox
27
35
- name: Test with tox
28
- run: tox run -e py,report_ci,lint
36
+ run: tox run -e py,report_ci
29
37
- uses: codecov/codecov-action@v4
30
38
with:
39
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments