diff options
| author | Jack O'Connor <[email protected]> | 2024-01-21 17:56:41 -0800 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2024-01-21 18:38:06 -0800 |
| commit | 1ca383ba9b1aa2c2508b15d89f3048be10cd9def (patch) | |
| tree | 97e596e0779b64e980cb891532b940171847b7f0 /.github | |
| parent | 6e519ea6b7e157ef1da89e39b660fe2aab8f6dcf (diff) | |
add guts testing to CI
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ff1199..8c31d4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,6 +131,17 @@ jobs: run: cargo test working-directory: ./reference_impl + # the new guts crate + - name: guts test + run: cargo test --all-features + working-directory: ./rust/guts + - name: guts no_std build + run: cargo build --no-default-features + working-directory: ./rust/guts + - name: guts no_std test # note that rust/guts/src/test.rs still uses libstd + run: cargo test --no-default-features + working-directory: ./rust/guts + b3sum_tests: name: b3sum ${{ matrix.target.name }} ${{ matrix.channel }} runs-on: ${{ matrix.target.os }} |
