Skip to content

Commit e7afa21

Browse files
Add ci for macos after testing locally (#58)
1 parent 0d0fc4c commit e7afa21

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

+14
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,17 @@ jobs:
3838
run: cargo clippy --all-targets --all-features -- -D warnings
3939
- name: Run tests
4040
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

Comments
 (0)