From 6e8ebbe0005189a334bab168e7b04d2f133c4b95 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Fri, 24 Feb 2023 18:26:26 -0800 Subject: [PATCH] Fix CI (#259) Gets CI working again by switching to `macos-11` from `macos-latest`. No idea why it works. We should switch back to `macos-latest` eventually. --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77b2cda..9e9363b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-11] runs-on: ${{ matrix.os }} @@ -23,7 +23,6 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: components: clippy, rustfmt - - run: cp crates/playground/src/playground.template.rs crates/playground/src/playground.rs - name: Validate formatting run: cargo fmt --all -- --check