Fix docs #28
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 | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| verified-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Build debug | |
| run: source tools/activate.sh && cargo verus build | |
| - name: Build debug with tracing | |
| run: source tools/activate.sh && cargo verus build --features trace | |
| - name: Build release | |
| run: source tools/activate.sh && cargo verus build --release | |
| - name: Build release with aws-lc feature | |
| run: source tools/activate.sh && cargo verus build --release --features aws-lc | |
| - name: Test | |
| run: source tools/activate.sh && cargo test --workspace | |
| unverified-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Build debug | |
| run: cargo build | |
| - name: Build release | |
| run: cargo build --release | |
| - name: Build release with aws-lc feature | |
| run: cargo build --release --features aws-lc |