Skip to content

refactor(CAHN Demo Server): ♻️ function to remove duplication #589

refactor(CAHN Demo Server): ♻️ function to remove duplication

refactor(CAHN Demo Server): ♻️ function to remove duplication #589

Workflow file for this run

name: Nist Policy - Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --manifest-path ./packages/nist_policy/Cargo.toml
- run: cargo test --verbose --manifest-path ./packages/nist_policy/Cargo.toml