Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaust committed Feb 21, 2024
1 parent 0e681aa commit 1d6b18e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
version:
- 1.63.0 # MSRV
- 1.72.1 # MSRV
- stable
- nightly
os:
Expand All @@ -38,19 +38,19 @@ jobs:
rustup override set ${{ matrix.version }}
- name: check build serde,macos_kqueue for examples
if: matrix.version != '1.63.0' && matrix.os == 'macos-latest'
if: matrix.version != '1.72.1' && matrix.os == 'macos-latest'
run: cargo check -p notify --features=serde,macos_kqueue --examples

- name: check build serde,macos_kqueue
if: matrix.version == '1.63.0' && matrix.os == 'macos-latest'
if: matrix.version == '1.72.1' && matrix.os == 'macos-latest'
run: cargo check -p notify --features=serde,macos_kqueue

- name: check build serde for examples
if: matrix.version != '1.63.0' && matrix.os != 'macos-latest'
if: matrix.version != '1.72.1' && matrix.os != 'macos-latest'
run: cargo check -p notify --features=serde --examples

- name: check build serde
if: matrix.version == '1.63.0' && matrix.os != 'macos-latest'
if: matrix.version == '1.72.1' && matrix.os != 'macos-latest'
run: cargo check --features=serde

- name: check build without crossbeam/default features
Expand Down

0 comments on commit 1d6b18e

Please sign in to comment.