From 14104690c55ed196ca890ddc953fd79c21a0f744 Mon Sep 17 00:00:00 2001 From: Max Countryman Date: Mon, 2 Oct 2023 12:47:40 -0700 Subject: [PATCH] use msrv for integration tests --- .github/workflows/rust.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 717a377..a8305ec 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -8,6 +8,7 @@ on: env: CARGO_TERM_COLOR: always + MSRV: 1.67.1 REDIS_URL: redis://localhost:6379/1 MONGODB_URL: mongodb://localhost:27017 POSTGRES_URL: postgres://postgres:postgres@localhost:5432 @@ -104,7 +105,7 @@ jobs: steps: - uses: actions/checkout@v4 - run: | - rustup toolchain install stable --profile minimal + rustup toolchain install ${{ env.MSRV }} --profile minimal cargo install cargo-tarpaulin - uses: Swatinem/rust-cache@v2 - uses: taiki-e/install-action@nextest