ci: Set pipefail to avoid swallowing error codes #112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependencies | |
on: | |
push: | |
branches: [ "main" ] | |
schedule: | |
- cron: "12 16 * * 5" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cargo Outdated | |
run: cargo outdated -i cargo_metadata --exit-code 1 | |
- name: Cargo Audit | |
run: cargo audit -D warnings |