We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d0fc4c commit e7afa21Copy full SHA for e7afa21
.github/workflows/ci.yml
@@ -38,3 +38,17 @@ jobs:
38
run: cargo clippy --all-targets --all-features -- -D warnings
39
- name: Run tests
40
run: cargo test --all-features --verbose
41
+ macos:
42
+ runs-on: macos-latest
43
+ steps:
44
+ - name: Update Rust
45
+ run: rustup update stable
46
+ - uses: actions/checkout@v4
47
+ - name: Build
48
+ run: cargo build --verbose --all-targets --all-features
49
+ - name: Check formatting
50
+ run: cargo fmt -- --check
51
+ - name: Run Clippy
52
+ run: cargo clippy --all-targets --all-features -- -D warnings
53
+ - name: Run tests
54
+ run: cargo test --all-features --verbose
0 commit comments