fix(audit): warn when storage parser falls back to Custom for framework namespace #16
This file contains hidden or 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: Build & Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| aws-lc-rs: | |
| name: crypto-aws-lc-rs (default) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: arduino/setup-protoc@v3 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| - uses: taiki-e/install-action@nextest | |
| - name: Clippy | |
| run: cargo clippy -p acton-service --all-targets --features full -- -D warnings | |
| - name: Nextest | |
| run: cargo nextest run -p acton-service --features full | |
| ring: | |
| name: crypto-ring (opt-in) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: arduino/setup-protoc@v3 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| - uses: taiki-e/install-action@nextest | |
| - name: Clippy | |
| run: cargo clippy -p acton-service --all-targets --no-default-features --features "full,crypto-ring" -- -D warnings | |
| - name: Nextest | |
| run: cargo nextest run -p acton-service --no-default-features --features "full,crypto-ring" |