Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Fix coverage workflow #704

Merged
merged 11 commits into from
Jun 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/rust-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,18 +80,16 @@ jobs:
- name: Run tests
run: make test

# 28.06.2023: This job uses unmaintained actions-rs because dtolnay is giving linking errors with nightly
coverage:
runs-on: ubuntu-20.04
steps:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
toolchain: nightly
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v2
Expand Down