fix: taint logic for job nodes with no nomad node (#774) #3608
Workflow file for this run
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: rust | |
on: push | |
concurrency: | |
group: rust-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
# Enable fail-fast behavior | |
shell: bash -e {0} | |
jobs: | |
cargo-deny: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: cargo deny (svc) | |
uses: EmbarkStudios/cargo-deny-action@v1 | |
with: | |
manifest-path: svc/Cargo.toml | |
- name: cargo deny (lib/bolt) | |
uses: EmbarkStudios/cargo-deny-action@v1 | |
with: | |
manifest-path: lib/bolt/Cargo.toml |