mirror of
https://github.com/PR0M3TH3AN/Marlin.git
synced 2025-09-09 07:38:50 +00:00
Merge pull request #78 from PR0M3TH3AN/codex/duplicate-comprehensive-tests-job-for-windows
Add Windows CI job
This commit is contained in:
23
.github/workflows/ci.yml
vendored
23
.github/workflows/ci.yml
vendored
@@ -73,6 +73,29 @@ jobs:
|
|||||||
if-no-files-found: warn
|
if-no-files-found: warn
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
|
windows-tests:
|
||||||
|
name: Windows Tests
|
||||||
|
runs-on: windows-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install Rust (stable)
|
||||||
|
uses: actions-rs/toolchain@v1.0.7
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
override: true
|
||||||
|
profile: minimal
|
||||||
|
|
||||||
|
- name: Check formatting
|
||||||
|
run: cargo fmt -- --check
|
||||||
|
|
||||||
|
- name: Lint with Clippy
|
||||||
|
run: cargo clippy -- -D warnings
|
||||||
|
|
||||||
|
- name: Run cargo tests
|
||||||
|
run: cargo test --all
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
name: Code Coverage (Tarpaulin)
|
name: Code Coverage (Tarpaulin)
|
||||||
needs: comprehensive-tests
|
needs: comprehensive-tests
|
||||||
|
Reference in New Issue
Block a user