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:35:30 +02:00
|
|
|
|
2023-04-09 20:41:57 +02:00
|
|
|
permissions: { contents: read }
|
2023-04-09 20:35:30 +02:00
|
|
|
|
|
|
|
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:
|
2023-09-16 01:54:02 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-02-03 23:57:02 +01:00
|
|
|
|
2024-02-05 17:25:37 +01:00
|
|
|
- name: Install Rust
|
2024-10-02 00:27:47 +02:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.10.0
|
2023-09-16 01:30:38 +02:00
|
|
|
with:
|
2024-06-20 04:10:20 +02:00
|
|
|
toolchain: nightly
|
2024-02-05 17:25:37 +01:00
|
|
|
components: llvm-tools-preview
|
2022-02-03 23:57:02 +01:00
|
|
|
|
2024-06-20 04:06:57 +02:00
|
|
|
- name: Install just, cargo-llvm-cov, cargo-nextest
|
2024-10-02 00:27:34 +02:00
|
|
|
uses: taiki-e/install-action@v2.44.15
|
2024-02-05 17:25:37 +01:00
|
|
|
with:
|
2024-06-20 04:06:57 +02:00
|
|
|
tool: just,cargo-llvm-cov,cargo-nextest
|
2024-02-05 17:25:37 +01:00
|
|
|
|
|
|
|
- name: Generate code coverage
|
2024-06-20 03:57:44 +02:00
|
|
|
run: just test-coverage-codecov
|
2023-04-09 20:41:57 +02:00
|
|
|
|
2022-02-03 23:57:02 +01:00
|
|
|
- name: Upload to Codecov
|
2024-10-02 00:27:21 +02:00
|
|
|
uses: codecov/codecov-action@v4.6.0
|
2023-09-16 01:30:38 +02:00
|
|
|
with:
|
2024-02-05 17:25:37 +01:00
|
|
|
files: codecov.json
|
|
|
|
fail_ci_if_error: true
|
|
|
|
env:
|
|
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|