mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Try code coverage
This commit is contained in:
parent
4f19827ee9
commit
ca6ab8e560
22
.github/workflows/main.yml
vendored
22
.github/workflows/main.yml
vendored
@ -9,6 +9,8 @@ on:
|
|||||||
- master
|
- master
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '00 01 * * *'
|
- cron: '00 01 * * *'
|
||||||
|
env:
|
||||||
|
RUST_BACKTRACE: 1
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
name: Test
|
name: Test
|
||||||
@ -126,3 +128,23 @@ jobs:
|
|||||||
# warnings... Note: this also requires nightly.
|
# warnings... Note: this also requires nightly.
|
||||||
command: rustdoc
|
command: rustdoc
|
||||||
args: --features 'bundled-full session buildtime_bindgen' -- -D warnings
|
args: --features 'bundled-full session buildtime_bindgen' -- -D warnings
|
||||||
|
|
||||||
|
codecov:
|
||||||
|
name: Generate code 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:
|
||||||
|
args: '--features "bundled-full session buildtime_bindgen"'
|
||||||
|
|
||||||
|
- name: Upload to codecov.io
|
||||||
|
uses: codecov/codecov-action@v1.0.2
|
||||||
|
with:
|
||||||
|
token: ${{secrets.CODECOV_TOKEN}}
|
||||||
|
Loading…
Reference in New Issue
Block a user