totp-rs/.github/workflows/rust.yml

44 lines
853 B
YAML
Raw Normal View History

2020-06-22 11:10:33 -04:00
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose --all-features
2022-01-13 11:52:06 -05:00
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
2022-01-13 12:04:12 -05:00
version: '0.19.0'
args: --all-features --verbose --out=Xml
2022-01-13 11:52:06 -05:00
- name: Upload to codecov.io
uses: codecov/codecov-action@v2
with:
token: ${{secrets.CODECOV_TOKEN}}
- name: Archive code coverage results
uses: actions/upload-artifact@v1
2022-01-13 10:52:27 -05:00
with:
2022-01-13 11:52:06 -05:00
name: code-coverage-report
2022-01-13 11:56:20 -05:00
path: cobertura.xml