Merge branch 'main' into donal/make-scaling-config-optional #367
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
on: | |
push: | |
paths: | |
- src/** | |
- tests/** | |
- .github/workflows/lint-and-test-cli.yml | |
- Cargo.toml | |
name: Lint and Test CLI | |
jobs: | |
clippy_check_cli: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-hub/docker/cli@f5fdbfc3f9d2a9265ead8962c1314108a7b7ec5d | |
env: | |
SKIP_LOGIN: true | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2023-09-13 | |
override: true | |
components: rustfmt, clippy | |
- name: Compile project | |
run: cargo build --all-features -p ev-cage -Z registry-auth | |
env: | |
CARGO_REGISTRIES_EVERVAULT_RUST_LIBRARIES_INDEX: ${{ secrets.RUST_CRYPTO_REGISTRY }} | |
CARGO_REGISTRIES_EVERVAULT_RUST_LIBRARIES_TOKEN: ${{ secrets.CARGO_REGISTRIES_EVERVAULT_RUST_LIBRARIES_TOKEN }} | |
- name: Test project | |
run: cargo test -p ev-cage | |
env: | |
CARGO_REGISTRIES_EVERVAULT_RUST_LIBRARIES_INDEX: ${{ secrets.RUST_CRYPTO_REGISTRY }} | |
- name: Format project | |
run: cargo fmt --check | |
env: | |
CARGO_REGISTRIES_EVERVAULT_RUST_LIBRARIES_INDEX: ${{ secrets.RUST_CRYPTO_REGISTRY }} | |
- name: Lint project | |
run: cargo clippy | |
env: | |
CARGO_REGISTRIES_EVERVAULT_RUST_LIBRARIES_INDEX: ${{ secrets.RUST_CRYPTO_REGISTRY }} |