Neutrino upgrade #226
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: | |
branches: [master, main] | |
pull_request: | |
branches: [master, main] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: integration_tests/ | |
- name: Build Integration Tests | |
run: cd integration_tests && cargo check --all --verbose | |
test: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: integration_tests/ | |
- name: Run Orchestrator tests | |
run: cd integration_tests && cargo test --all --release --verbose | |
rustfmt: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check code formatting | |
run: rustup component add rustfmt && cd integration_tests && cargo fmt --all -- --check | |
clippy: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: integration_tests/ | |
- name: Check for Clippy lints | |
run: rustup component add clippy && cd integration_tests && cargo clippy --all --all-targets --all-features -- -D warnings | |
audit: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: integration_tests/ | |
- name: Run Cargo Audit | |
run: cargo install cargo-audit && cd integration_tests && cargo audit |