Skip to content

Commit

Permalink
Add actions job to notice outdated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Oct 8, 2021
1 parent b8dbdbb commit 2cf5d1a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,11 @@ jobs:
- uses: dtolnay/rust-toolchain@clippy
- run: cargo clippy --tests -- -Dclippy::all -Dclippy::pedantic
- run: cargo clippy --tests --all-features -- -Dclippy::all -Dclippy::pedantic

outdated:
name: Outdated
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v2
- run: cargo outdated --exit-code 1

0 comments on commit 2cf5d1a

Please sign in to comment.