This repository was archived by the owner on Sep 12, 2026. It is now read-only.
sub-MTU XMSS formal proof of classical security in ROM #153
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: Rust | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: rust-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| # The flags live in .cargo/config.toml's aliases | |
| - name: Test | |
| run: cargo testall | |
| - name: Clippy | |
| run: cargo clippyall | |
| - name: Rustdoc | |
| run: cargo docall |