switch from diesel to rusqlite, add initial report builder #14
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: codecov-rs CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint (rustfmt + clippy) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
components: clippy, rustfmt | |
- name: Run lint | |
run: | | |
cargo fmt --all --check | |
cargo clippy | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
- name: Run build | |
run: | | |
cargo build | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
- name: Run tests | |
run: | | |
cargo test | |
- name: Install `cargo llvm-cov` | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Collect coverage | |
run: | | |
cargo llvm-cov --no-default-features --lcov --output-path lcov.info | |
- name: Upload to Codecov | |
uses: codecov/codecov-action@v4-beta | |
with: | |
token: ${{ secrets.CODECOV_ORG_TOKEN }} |