49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
name: Coverage
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build_and_test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
version:
|
|
- nightly
|
|
|
|
name: ${{ matrix.version }} - x86_64-unknown-linux-gnu
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: ⚡ Cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
target
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Install ${{ matrix.version }}
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ matrix.version }}-x86_64-unknown-linux-gnu
|
|
profile: minimal
|
|
override: true
|
|
|
|
- name: Generate coverage file
|
|
if: (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
|
uses: actions-rs/tarpaulin@v0.1
|
|
with:
|
|
args: "-t 1200"
|
|
env:
|
|
GIT_HASH: 8e77345f1597e40c2e266cb4e6dee74888918a61
|
|
|
|
- name: Upload to Codecov
|
|
uses: codecov/codecov-action@v2
|
|
if: github.ref == 'refs/heads/master'
|