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 5a0b76f commit 2ca553eCopy full SHA for 2ca553e
.github/workflows/ci.yml
@@ -6,7 +6,7 @@ on:
6
branches: [main]
7
jobs:
8
lint:
9
- runs-on: 'ubuntu-latest'
+ runs-on: ubuntu-latest
10
steps:
11
- name: Check out code.
12
uses: actions/checkout@v4
@@ -73,6 +73,7 @@ jobs:
73
run: poetry run pytest
74
75
build:
76
+ needs: test
77
strategy:
78
fail-fast: false
79
matrix:
@@ -85,11 +86,9 @@ jobs:
85
86
87
- name: Linux Install
88
if: matrix.platform == 'ubuntu-latest'
- run: |
89
- sudo apt-get install -y bsdmainutils
+ run: sudo apt-get install -y bsdmainutils
90
- name: Script
91
92
- ./check_integrity.sh
+ run: ./check_integrity.sh
93
- name: Brew release
94
if: matrix.platform == 'macos-latest'
95
run: |
0 commit comments