diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 796717c..dc91924 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -29,10 +29,18 @@ jobs: test: name: Test Suite runs-on: ubuntu-latest + strategy: + matrix: + features: + - --no-default-features + - --all-features + - --features=serialize + - --features=integers steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - - run: cargo test --all-features + - name: Install stable toolchain + uses: dtolnay/rust-toolchain@stable + - run: cargo test ${{ matrix.features }} fmt: name: Rustfmt