From 4dbe5b374de0d58379d3893aa044da57025dc97a Mon Sep 17 00:00:00 2001 From: Daniel Faust Date: Wed, 21 Feb 2024 16:20:58 +0100 Subject: [PATCH] Fix CI --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ef02b461..3a29b629 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: version: - - 1.63.0 # MSRV + - 1.72.1 # MSRV - stable - nightly os: @@ -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