Skip to content

Commit

Permalink
ci: add job depends
Browse files Browse the repository at this point in the history
  • Loading branch information
shoenig committed Nov 5, 2023
1 parent ae9f3bd commit 61957df
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
version: v1.54.2
skip-cache: true
run-changes:
needs:
- 'run-copywrite'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand All @@ -31,6 +33,10 @@ jobs:
run: |
make changes
run-tests:
needs:
- 'run-copywrite'
- 'run-lint'
- 'run-changes'
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 61957df

Please sign in to comment.