From cabae7b1fd41de0315c8c519d7c420ad0389ba53 Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Sat, 5 Nov 2022 16:08:12 +0100 Subject: [PATCH] Convert 2021 CI to 2022 --- .github/workflows/{2021.yml => 2022.yml} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename .github/workflows/{2021.yml => 2022.yml} (83%) diff --git a/.github/workflows/2021.yml b/.github/workflows/2022.yml similarity index 83% rename from .github/workflows/2021.yml rename to .github/workflows/2022.yml index 95ccbbd..6338fa2 100644 --- a/.github/workflows/2021.yml +++ b/.github/workflows/2022.yml @@ -1,7 +1,7 @@ on: - push -name: Advent of Code 2021 +name: Advent of Code 2022 jobs: ci: @@ -20,7 +20,7 @@ jobs: continue-on-error: ${{ matrix.experimental }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install toolchain uses: actions-rs/toolchain@v1 @@ -31,16 +31,16 @@ jobs: components: rustfmt, clippy - name: Build binaries - working-directory: 2021 + working-directory: 2022 run: > cargo build --all-targets - name: Run tests - working-directory: 2021 + working-directory: 2022 run: > cargo test - name: Run clippy - working-directory: 2021 + working-directory: 2022 run: > cargo clippy -- --deny warnings