Import more demo code from vm-attest
#5
Workflow file for this run
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: test suite | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: cargo test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: | | |
| git clone --depth=1 https://github.com/oxidecomputer/pki-playground | |
| cargo install --path pki-playground | |
| git clone --depth=1 https://github.com/oxidecomputer/dice-util | |
| cargo install --path dice-util/attest-mock | |
| - run: cargo test |