From 4f64bed1bd53413d234c10e7e082e1793a69856e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Stu=CC=88rmer?= Date: Sun, 6 Oct 2024 07:04:53 +0200 Subject: [PATCH] run nightly only --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f7450dd..88d432d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,9 +21,9 @@ jobs: strategy: matrix: toolchain: - - stable + # - stable - beta - - nightly + # - nightly steps: - name: Checkout uses: actions/checkout@v4 @@ -56,7 +56,7 @@ jobs: run: cargo build --verbose - name: Test - if: matrix.toolchain == 'nightly' + # if: matrix.toolchain == 'nightly' run: cargo test -- -Z unstable-options --format json --report-time | tee test_results_debug.json env: # See https://github.com/johnterickson/cargo2junit/issues/79 RUSTC_BOOTSTRAP: 1 @@ -65,7 +65,7 @@ jobs: run: cargo build --release --verbose - name: Test release - if: matrix.toolchain == 'nightly' + # if: matrix.toolchain == 'nightly' run: cargo test --release -- -Z unstable-options --format json --report-time | tee test_results_release.json env: # See https://github.com/johnterickson/cargo2junit/issues/79 RUSTC_BOOTSTRAP: 1