diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1ded1d20..d54e35d9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -48,11 +48,24 @@ jobs: STEP: ${{ matrix.step }} run: ./ci "${STEP}" + windows: + runs-on: windows-latest + + steps: + - name: "Setup Rust" + uses: actions-rust-lang/setup-rust-toolchain@v1.5.0 + with: + components: rustfmt, clippy + + - name: Checkout repository + uses: actions/checkout@v4 + check_success: if: always() needs: - linux + - windows runs-on: ubuntu-latest