This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
Adds code coverage #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
SQLX_OFFLINE: true | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Start Docker Compose | |
- name: Start Docker Compose | |
run: docker-compose up -d | |
- name: Install Rust | |
uses: actions-rust-lang/[email protected] | |
with: | |
components: llvm-tools-preview | |
# Cache dependencies and build artifacts | |
- name: Cache build artifacts and dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/[email protected] | |
with: | |
tool: cargo-llvm-cov | |
- name: Generate code coverage | |
run: cargo llvm-cov --workspace --all-features --codecov --output-path codecov.json | |
env: | |
BACKBLAZE_BUCKET_ID: ${{ secrets.BACKBLAZE_BUCKET_ID }} | |
BACKBLAZE_KEY: ${{ secrets.BACKBLAZE_KEY }} | |
BACKBLAZE_KEY_ID: ${{ secrets.BACKBLAZE_KEY_ID }} | |
S3_ACCESS_TOKEN: ${{ secrets.S3_ACCESS_TOKEN }} | |
S3_SECRET: ${{ secrets.S3_SECRET }} | |
S3_URL: ${{ secrets.S3_URL }} | |
S3_REGION: ${{ secrets.S3_REGION }} | |
S3_BUCKET_NAME: ${{ secrets.S3_BUCKET_NAME }} | |
SQLX_OFFLINE: true | |
DATABASE_URL: postgresql://labrinth:labrinth@localhost/postgres | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |