From 856ab9de8a5b5be443e084c17f9029e5edc8f760 Mon Sep 17 00:00:00 2001 From: turbocooler Date: Fri, 7 Jan 2022 02:22:06 +0300 Subject: [PATCH] Bump MSRV. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f720a391..d628a42c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: # MSRV and nightly - version: [1.46.0, nightly] + version: [1.51.0, nightly] steps: - uses: actions/checkout@v2 @@ -23,7 +23,7 @@ jobs: rustup override set ${{ matrix.version }} - name: Rustfmt check - if: matrix.version == '1.46.0' + if: matrix.version == '1.51.0' run: | rustup component add rustfmt cargo fmt --all -- --check @@ -32,7 +32,7 @@ jobs: run: cargo test --workspace --exclude=phf_codegen_test - name: phf_macros UI test - if: matrix.version == '1.46.0' + if: matrix.version == '1.51.0' working-directory: phf_macros_tests run: cargo test -- --ignored --test-threads=1