mirror of
https://github.com/actix/actix-web.git
synced 2024-11-10 19:01:05 +00:00
36 lines
939 B
YAML
36 lines
939 B
YAML
# disabled because `cargo tarpaulin` currently segfaults
|
|
|
|
name: Coverage
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
# job currently (1st Feb 2022) segfaults
|
|
coverage:
|
|
name: coverage
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install stable
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable-x86_64-unknown-linux-gnu
|
|
profile: minimal
|
|
override: true
|
|
|
|
- name: Generate Cargo.lock
|
|
uses: actions-rs/cargo@v1
|
|
with: { command: generate-lockfile }
|
|
- name: Cache Dependencies
|
|
uses: Swatinem/rust-cache@v1.2.0
|
|
|
|
- name: Generate coverage file
|
|
run: |
|
|
cargo install cargo-tarpaulin --vers "^0.13"
|
|
cargo tarpaulin --workspace --features=rustls,openssl --out Xml --verbose
|
|
- name: Upload to Codecov
|
|
uses: codecov/codecov-action@v1
|
|
with: { file: cobertura.xml }
|