From 4acc103afae1cc04fc16388aaa0042238d62a6f0 Mon Sep 17 00:00:00 2001 From: oxalica Date: Wed, 11 Sep 2024 13:19:24 -0400 Subject: [PATCH] ci: enable all non-webapi tests on stable rustc --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 94229c7..61c1de8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -56,9 +56,9 @@ jobs: rustup update --no-self-update ${{ matrix.rust }} rustup default ${{ matrix.rust }} - - name: Disable integration tests on stable rustc + - name: Disable webapi tests on stable rustc if: matrix.rust == 'stable' - run: mv ./blahd/tests{,-disabled} + run: rm ./blahd/tests/webapi.rs - name: Cache Dependencies uses: Swatinem/rust-cache@v2