Increase timeout on coverage job to 10mins, reorg config

This commit is contained in:
Deirdre Connolly 2020-07-24 17:36:59 -04:00 committed by Deirdre Connolly
parent 4aa00ad216
commit bbc6fb82bf
2 changed files with 16 additions and 29 deletions

View File

@ -1,29 +0,0 @@
name: CI
on:
pull_request:
paths:
- '**.rs'
push:
branches:
- main
paths:
- '**.rs'
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
version: 'latest'
timeout: 300
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v1.0.12

View File

@ -65,3 +65,19 @@ jobs:
with:
command: fmt
args: --all -- --check
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
version: 'latest'
timeout: 600
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v1.0.12