From 21c2ca906234e695b33e3678e6164527a7c34b13 Mon Sep 17 00:00:00 2001 From: "Carson M." Date: Fri, 24 Jan 2025 00:52:13 -0600 Subject: [PATCH] ci(other-checks): verify msrv --- .github/workflows/other-checks.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/other-checks.yml b/.github/workflows/other-checks.yml index cb601b6..ec06bd3 100644 --- a/.github/workflows/other-checks.yml +++ b/.github/workflows/other-checks.yml @@ -43,3 +43,15 @@ jobs: - name: Run checks run: | cargo check -p ort --no-default-features + msrv: + name: MSRV (1.72) + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install stable Rust toolchain + uses: dtolnay/rust-toolchain@1.72 + - uses: Swatinem/rust-cache@v1 + - name: Run checks + run: | + cargo check -p ort + cargo check -p ort --features load-dynamic