1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00
actix-extras/.github/workflows/coverage.yml

47 lines
1.0 KiB
YAML
Raw Normal View History

2022-02-03 23:57:02 +01:00
name: Coverage
on:
2023-09-16 01:30:38 +02:00
push:
branches: [master]
2023-04-09 20:41:57 +02:00
permissions: { contents: read }
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2022-02-03 23:57:02 +01:00
jobs:
coverage:
runs-on: ubuntu-latest
services:
redis:
image: redis:5.0.7
ports:
- 6379:6379
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v4
2022-02-03 23:57:02 +01:00
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
2023-09-16 01:30:38 +02:00
with:
components: llvm-tools-preview
2022-02-03 23:57:02 +01:00
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2.33.9
with:
tool: cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --workspace --all-features --codecov --output-path codecov.json
2023-04-09 20:41:57 +02:00
2022-02-03 23:57:02 +01:00
- name: Upload to Codecov
uses: codecov/codecov-action@v4.2.0
2023-09-16 01:30:38 +02:00
with:
files: codecov.json
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}