diff options
| author | datdenkikniet <jcdra1@gmail.com> | 2025-03-16 14:56:12 +0100 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2025-03-24 07:36:23 +0000 |
| commit | 9a953c9875f32bc3f07c3c30a00ea2a9be9d6be1 (patch) | |
| tree | 6da51b72ba088f18d32216d44d180e861a52b431 | |
| parent | cf2ed6d49e671ef4d1e7bfdc6adad7529fc5c770 (diff) | |
add CI step to run rtic-sync loom tests
| -rw-r--r-- | .github/workflows/build.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1c7301d..597bddd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -265,6 +265,16 @@ jobs: - name: Run cargo test run: cargo xtask --deny-warnings --backend ${{ matrix.backend }} test ${{ matrix.package }} + loom-tests: + name: rtic-sync loom tests + runs-on: ubuntu-22.04 + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Run cargo test + run: RUSTFLAGS="--cfg loom" cargo test -p rtic-sync --release --lib + # Build documentation, check links docs: name: build docs @@ -661,6 +671,7 @@ jobs: - check-clippy - testexamples - tests + - loom-tests - docs - mdbook runs-on: ubuntu-22.04 |
