Skip to content

Commit

Permalink
ci: Add dependency check in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Marek Pikuła <[email protected]>
  • Loading branch information
MarekPikula committed Apr 16, 2024
1 parent 2fdd5c6 commit 4e97ee5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,13 @@ jobs:
- name: Run formatter
run: poetry run ${{ matrix.tool }} src/ test/

dependency-review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Dependency Review"
uses: actions/dependency-review-action@v4

build-docs:
runs-on: ubuntu-latest
steps:
Expand All @@ -118,9 +125,10 @@ jobs:

build-publish:
needs:
- test
- build-docs
- dependency-review
- lint
- test
if: github.ref == 'refs/heads/main'
name: Build source distribution
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4e97ee5

Please sign in to comment.