-
Notifications
You must be signed in to change notification settings - Fork 623
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Seperates linting/Rust into linting/{Rust, Rust-Typos, Rust-Audit}
Given the nature of using NASL to identify vulnerabilities we may cannot get rif of all audit findings. To indicate that the CI fails based on an audit, rather than e.g. a clippy warning, cargo audit is seperated into an own job. Since the same may be true for typos, typos are seperated into an own job as well. With that change we can immediately see if a CI of a PR failed because of audit, typos or Rust linting issues.
- Loading branch information
1 parent
ffa011e
commit 1ac1a4f
Showing
2 changed files
with
32 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: "Setup Rust Environment" | ||
description: "Install necessary dependencies and set up Rust stable" | ||
runs: | ||
using: "composite" | ||
steps: | ||
- run: sudo apt update || true | ||
shell: bash | ||
- run: sudo apt-get install -y libpcap-dev | ||
shell: bash | ||
- run: rustup update stable && rustup default stable || rustup default stable | ||
shell: bash | ||
|
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