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.
2 parents a8b7229 + 97d0837 commit 27c3cc9Copy full SHA for 27c3cc9
.github/workflows/ci.yml
@@ -12,14 +12,12 @@ jobs:
12
lint:
13
runs-on: ubuntu-latest
14
steps:
15
- - name: Check out repo
16
- uses: actions/checkout@v3
17
- - name: Set up Python
18
- uses: actions/setup-python@v3
19
- - name: Run pre-commit
20
- uses: pre-commit/[email protected]
+ - uses: actions/checkout@v3
+ - uses: pre-commit/[email protected]
21
22
build:
+ needs: [lint]
+
23
strategy:
24
matrix:
25
platform: [ubuntu-latest]
@@ -33,7 +31,7 @@ jobs:
33
31
runs-on: ${{ matrix.platform }}
34
32
35
36
- - uses: actions/setup-python@v3
+ - uses: actions/setup-python@v4
37
with:
38
python-version: ${{ matrix.python-version }}
39
0 commit comments