Skip to content

Commit

Permalink
run nightly only
Browse files Browse the repository at this point in the history
  • Loading branch information
thebino committed Oct 6, 2024
1 parent 1b2b6af commit 4f64bed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
strategy:
matrix:
toolchain:
- stable
# - stable
- beta
- nightly
# - nightly
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 4f64bed

Please sign in to comment.