Skip to content

Commit

Permalink
add seperate test for mac and linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Shourya742 committed Dec 13, 2024
1 parent 61ca979 commit 3733bf8
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,18 @@ jobs:
fi
working-directory: utils/buffer/fuzz

- name: Test

- name: Test (MAC)
if: matrix.os == 'macos-latest'
run: |
sudo cargo test --manifest-path=benches/Cargo.toml
sudo cargo test --manifest-path=common/Cargo.toml
sudo cargo test --manifest-path=protocols/Cargo.toml
sudo cargo test --manifest-path=roles/Cargo.toml
sudo cargo test --manifest-path=utils/Cargo.toml
- name: Test (LINUX)
if: matrix.os == 'ubuntu-latest'
run: |
cargo test --manifest-path=benches/Cargo.toml
cargo test --manifest-path=common/Cargo.toml
Expand Down

0 comments on commit 3733bf8

Please sign in to comment.