mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2024-11-22 08:16:25 -06:00
Add "cargo outdated" checks to the GitHub CI workflow.
Part of ISSUE #229
This commit is contained in:
parent
d198c0feac
commit
3991aa404a
12
.github/workflows/rust.yml
vendored
12
.github/workflows/rust.yml
vendored
@ -18,3 +18,15 @@ jobs:
|
||||
run: pushd src/rust; cargo build --verbose --all; popd
|
||||
- name: Run tests
|
||||
run: pushd src/rust; cargo test --verbose --all; popd
|
||||
audit:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install tools
|
||||
run: pushd src/rust; cargo install cargo-outdated; popd
|
||||
- name: Check for outdated dependencies
|
||||
script: pushd src/rust; cargo outdated -w --color=always --root-deps-only --exit-code 1 -v; popd
|
||||
|
Loading…
Reference in New Issue
Block a user