-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The `./ci "${STEP}"` step was never executed, thus the Windows setup is covered by ci to begin with.
- Loading branch information
1 parent
0c76922
commit 2531d30
Showing
1 changed file
with
0 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,34 +28,11 @@ jobs: | |
STEP: ${{ matrix.step }} | ||
run: ./ci "${STEP}" | ||
|
||
windows: | ||
runs-on: windows-latest | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- name: Rust formatting | ||
step: cargo-fmt-check | ||
- name: Rust linting | ||
step: cargo-clippy | ||
- name: Rust tests | ||
step: cargo-test | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: "Setup Rust" | ||
uses: actions-rust-lang/[email protected] | ||
with: | ||
components: rustfmt, clippy | ||
|
||
check_success: | ||
if: always() | ||
|
||
needs: | ||
- linux | ||
- windows | ||
|
||
runs-on: ubuntu-latest | ||
|
||
|