Skip to content

Commit

Permalink
Correct workflow yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AgeManning committed Sep 27, 2023
1 parent a323fed commit 94e883d
Showing 1 changed file with 25 additions and 26 deletions.
51 changes: 25 additions & 26 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,44 @@ jobs:
code-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get latest version of stable rust
run: rustup update stable
- uses: actions/checkout@v3
- name: Get latest version of stable Rust
uses: moonrepo/setup-rust@v1
with:
channel: stable
cache-target: release
components: rustfmt, clippy
bins: cargo-audit
- name: Check formatting with cargofmt
run: cargo fmt -- --check
- name: Check for lint warnings
run: cargo clippy --all-features -- -D warnings
release-tests-ubuntu
- name: Run cargo audit to identify known security vulnerabilities reported to the RustSec Advisory Database
run: cargo audit
release-tests-ubuntu:
runs-on: ubuntu-latest
needs: cargo-fmt
steps:
- uses: actions/checkout@v2
- name: Get latest version of stable rust
run: rustup update stable
- uses: actions/checkout@v3
- name: Get latest version of stable Rust
uses: moonrepo/setup-rust@v1
with:
channel: stable
cache-target: release
bins: cargo-nextest
- name: Run tests in release
run: cargo test --all --release --tests
run: cargo nextest run --all --release --tests
- name: Run tests in release ed25519
run: cargo test --all --release --features "ed25519" --tests
run: cargo nextest run --all --release --features "ed25519" --tests
- name: Run tests in release secp256k1
run: cargo test --all --release --features "secp256k1" --tests
run: cargo nextest run --all --release --features "secp256k1" --tests
- name: Run tests in release rust-secp256k1
run: cargo test --all --release --features "rust-secp256k1" --tests
run: cargo nextest run --all --release --features "rust-secp256k1" --tests
- name: Run tests in release libp2p
run: cargo test --all --release --features "libp2p" --tests
run: cargo nextest run --all --release --features "libp2p" --tests
- name: Run tests in release libp2p, rust-secp256k1
run: cargo test --all --release --features "libp2p,rust-secp256k1" --tests
run: cargo nextest run --all --release --features "libp2p,rust-secp256k1" --tests
- name: Run tests in release all features
run: cargo test --all --release --all-features
cargo-audit:
runs-on: ubuntu-latest
needs: cargo-fmt
steps:
- uses: actions/checkout@v2
- name: Get latest version of stable rust
run: rustup update stable
- name: Get latest cargo audit
run: cargo install --force cargo-audit
- name: Run cargo audit to identify known security vulnerabilities reported to the RustSec Advisory Database
run: cargo audit
run: cargo nextest run --all --release --all-features
check-rustdoc-links:
name: Check rustdoc intra-doc links
runs-on: ubuntu-latest
Expand Down

0 comments on commit 94e883d

Please sign in to comment.