Skip to content

Commit

Permalink
Correct 'needs'
Browse files Browse the repository at this point in the history
  • Loading branch information
bifurcation committed Oct 31, 2024
1 parent 005697d commit 76ab8cf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ env:

jobs:
choose_crypto_matrix:
name: Choose crypto libraries to test with
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
Expand Down Expand Up @@ -61,7 +62,7 @@ jobs:
fallback-style: 'Mozilla'

build-and-unit-test:
needs: formatting-check
needs: [formatting-check, choose_crypto_matrix]
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -135,7 +136,7 @@ jobs:
clang-tidy:
if: github.event.pull_request.draft == false
needs: build-and-unit-test
needs: [build-and-unit-test, choose_crypto_matrix]
name: Build with clang-tidy
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 76ab8cf

Please sign in to comment.