From 6f3aa297baf0e55cc85b859646fccbd103357518 Mon Sep 17 00:00:00 2001 From: Adrien Cacciaguerra Date: Mon, 30 Jun 2025 15:11:52 +0200 Subject: [PATCH] chore(ci): add windows lint job --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f41079e1..7921fcae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,19 @@ jobs: with: extra_args: --all-files + lint-windows: + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: true + - uses: moonrepo/setup-rust@v1 + with: + components: rustfmt, clippy + - uses: pre-commit/action@v3.0.1 + with: + extra_args: --all-files + msrv-check: runs-on: ubuntu-latest steps: @@ -109,6 +122,7 @@ jobs: if: always() needs: - lint + - lint-windows - msrv-check - tests - compat-integration-test-instrumentation