Skip to content

Commit

Permalink
fix: pin nightly version on source cov workflow (#120)
Browse files Browse the repository at this point in the history
A bandaid over the issue of source coverage failing due to Dalek being a
naughty library again.

Clearly a temporary fix, since this will break again some thim in the
future.
  • Loading branch information
CjS77 authored Mar 5, 2024
1 parent effad7d commit 1aa7694
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/source-cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches:
- main
env:
RUSTUP_TOOLCHAIN: "nightly"
RUSTUP_TOOLCHAIN: "stable"
jobs:
coverage:
runs-on: ubuntu-latest
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Download Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
toolchain: {{ env.RUSTUP_TOOLCHAIN }}
components: llvm-tools-preview
- name: Install requirements for code coverage
run: |
Expand Down

0 comments on commit 1aa7694

Please sign in to comment.