From cf2b4e2af9ba65787da28d01f98b85c895ef7339 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gonz=C3=A1lez?= Date: Mon, 13 Nov 2023 15:39:21 +0000 Subject: [PATCH] ci.yml: Add a MSRV job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomás González --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17288d8..a696806 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,24 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: Install latest Rust + uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + toolchain: stable + rustflags: "" + - name: Execute all tests + run: ./tests/ci.sh + + build-msrv: + name: MSRV - Build and check formatting + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install Rust MSRV + uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + toolchain: 1.66.0 + rustflags: "" - name: Execute all tests run: ./tests/ci.sh