Skip to content

Commit

Permalink
Fix Mac build and add cloud-hosted Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham committed Jul 20, 2023
1 parent 489eb1d commit d144cb6
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ jobs:
- uses: Swatinem/rust-cache@v2
# make sure benches don't bit-rot
- name: build benches
# TODO: --all-features
run: cargo build --benches
- name: cargo test
# TODO: --all-features
run: |
Expand All @@ -61,7 +59,7 @@ jobs:
strategy:
matrix:
os:
- macos-latest-xl
- macos-latest
fail-fast: false
env:
RUSTFLAGS: -D warnings
Expand All @@ -70,10 +68,6 @@ jobs:
- uses: actions-rs/toolchain@v1
- uses: taiki-e/install-action@nextest
- uses: Swatinem/rust-cache@v2
# make sure benches don't bit-rot
- name: build benches
# TODO: --all-features
run: cargo build --benches
- name: cargo test
# TODO: --all-features
run: |
Expand All @@ -82,6 +76,29 @@ jobs:
run: |
cargo test --doc
misc:
runs-on ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
fail-fast: false
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
- uses: taiki-e/install-action@nextest
- uses: Swatinem/rust-cache@v2
# make sure benches don't bit-rot
- name: build benches
# TODO: --all-features
run: cargo build --benches
- name: Doctests
run: |
cargo test --doc

clippy:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit d144cb6

Please sign in to comment.