diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ab6c5f1..fcae738 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -57,25 +57,9 @@ jobs: - name: "Run cargo build" run: cargo build - - name: "Run cargo build for stable" - run: cargo build --no-default-features --features stable - if: runner.os != 'Windows' - - - name: "Run cargo build for stable on musl" - run: cargo build --target x86_64-unknown-linux-musl --no-default-features --features stable - if: runner.os == 'Linux' - - name: "Run cargo test" run: cargo test - - name: "Run cargo test for stable" - run: cargo test --no-default-features --features stable - if: runner.os != 'Windows' - - - name: "Run cargo test for stable on musl" - run: cargo test --target x86_64-unknown-linux-musl --no-default-features --features stable - if: runner.os == 'Linux' - - name: "Install Rustup Targets" run: | rustup target add i686-unknown-linux-gnu