Skip to content

Commit

Permalink
Disable testing on stable on CI
Browse files Browse the repository at this point in the history
Rust 1.84 isn't released yet.
  • Loading branch information
Thomasdezeeuw committed Jan 4, 2025
1 parent 765b840 commit 740d379
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@ permissions:
contents: read

jobs:
Test:
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Run Tests
run: cargo test
- name: Run Tests (release build)
run: cargo test --release
# TODO: enable CI on stable again #148
#Test:
# runs-on: ubuntu-24.04
# timeout-minutes: 5
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@1.84
# - name: Run Tests
# run: cargo test
# - name: Run Tests (release build)
# run: cargo test --release
Nightly:
runs-on: ubuntu-24.04
timeout-minutes: 5
Expand Down

0 comments on commit 740d379

Please sign in to comment.