Skip to content

Commit

Permalink
Add MacOS to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dralley committed Jan 2, 2024
1 parent 3fbd7e9 commit 929a51a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ jobs:

test-feature-matrix:
name: Test Suite (feature-matrix)
runs-on: ubuntu-latest
strategy:
matrix:
rust:
Expand All @@ -63,6 +62,11 @@ jobs:
flags:
- "--all-features"
- "--no-default-features"
os:
- "ubuntu-latest"
- "macos-latest"
# - "windows-latest" TODO
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
Expand Down
1 change: 1 addition & 0 deletions tests/compat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ mod common;

use signature;

#[cfg(target_os = "linux")]
mod pgp {
use super::*;
use signature::pgp::{Signer, Verifier};
Expand Down

0 comments on commit 929a51a

Please sign in to comment.