ci: Fix coverage job in GitHub Actions

This commit is contained in:
Kogia-sima 2020-12-30 00:02:29 +09:00
parent e69d36b168
commit 8f79cbc61c
1 changed files with 1 additions and 4 deletions

View File

@ -7,10 +7,6 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install toolchain
run: |
rustup default nightly
rustup component add miri
- name: Install toolchain - name: Install toolchain
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1
with: with:
@ -18,6 +14,7 @@ jobs:
target: x86_64-unknown-linux-gnu target: x86_64-unknown-linux-gnu
toolchain: nightly toolchain: nightly
override: true override: true
components: rustfmt
- name: Install grcov - name: Install grcov
run: curl -L https://github.com/mozilla/grcov/releases/download/v0.6.1/grcov-linux-x86_64.tar.bz2 | tar jxf - run: curl -L https://github.com/mozilla/grcov/releases/download/v0.6.1/grcov-linux-x86_64.tar.bz2 | tar jxf -
- name: Install rust-covfix - name: Install rust-covfix