Prepare, configure, and manage Firecracker microVMs in seconds!
virtualization linux microvm firecracker

ci: run tests

+8 -1
+4 -1
.github/workflows/ci.yml
··· 7 7 branches: 8 8 - main 9 9 jobs: 10 - fmt: 10 + tests: 11 11 runs-on: ubuntu-latest 12 12 steps: 13 13 - uses: actions/checkout@v2 ··· 23 23 run: | 24 24 type cargo 25 25 cargo fmt --all --check 26 + - name: Run tests 27 + run: | 28 + cargo test
+4
.tangled/workflows/fmt.yml
··· 9 9 - cargo 10 10 - rustc 11 11 - rustfmt 12 + - gcc 12 13 13 14 steps: 14 15 - name: "cargo fmt" 15 16 command: | 16 17 cargo fmt --all --check 18 + - name: "cargo test" 19 + command: | 20 + cargo test