From 53f52db68372e7af1185ff989a8ba8231add21db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Medina?= Date: Tue, 15 Aug 2023 16:16:38 -0700 Subject: [PATCH] remove actions-rs as it is not maintained --- .github/workflows/test.yml | 30 +++++++++++++++++------------- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index abff621..1fde1ea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,16 +6,20 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: Install latest nightly - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: nightly - override: true - - name: build - run: cargo build --verbose - - name: test - run: cargo test --verbose - - name: test --release - run: cargo test --release --verbose + - uses: actions/checkout@v3 + # LATEST STABLE + - uses: dtolnay/rust-toolchain@stable + - name: build stable + run: cargo +stable build --verbose + - name: test stable + run: cargo +stable test --verbose + - name: test stable --release + run: cargo +stable test --release --verbose + # MSRV + - uses: dtolnay/rust-toolchain@1.57.0 + - name: build MSRV + run: cargo +1.57.0 build --verbose + - name: test MSRV + run: cargo +1.57.0 test --verbose + - name: test MSRV --release + run: cargo +1.57.0 test --release --verbose diff --git a/Cargo.toml b/Cargo.toml index c262f15..751bbc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/nrxus/faux" edition = "2021" keywords = ["mock", "mocking", "test", "testing", "faux"] readme = "README.md" -rust-version = "1.56" +rust-version = "1.57" [dependencies] faux_macros = { path = "faux_macros", version = "0.1.8" }