Skip to content

Commit 612d87a

Browse files
committed
ci: Run unit tests on Mac OS
We have a job that runs all unit tests for all feature combinations on Linux. I find it excessive to run all of this on Mac OS, so I added a separate job to run tests with all features enabled (which is 1 feature combination instead of all combinations). In a follow-up PR, we can add Windows to the feature matrix of this CI job, but with the current code base this job would fail. We need to spend time to debug this.
1 parent 491a88d commit 612d87a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/main.yml

+16
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,19 @@ jobs:
101101
components: clippy
102102
- name: Running cargo clippy
103103
run: cargo clippy --all-targets -- --deny warnings
104+
105+
test-other-platforms:
106+
name: Test
107+
runs-on: ${{ matrix.os }}
108+
strategy:
109+
matrix:
110+
os: [macos-latest]
111+
steps:
112+
- name: Checkout Crate
113+
uses: actions/checkout@v4
114+
- name: Checkout Toolchain
115+
uses: dtolnay/rust-toolchain@stable
116+
- name: Set dependencies
117+
run: cp Cargo-recent.lock Cargo.lock
118+
- name: Run unit tests
119+
run: cargo test --locked --workspace --all-features

0 commit comments

Comments
 (0)