Skip to content

Refactor plugin management to use TypeId, make thread safe #5

Refactor plugin management to use TypeId, make thread safe

Refactor plugin management to use TypeId, make thread safe #5

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview, rustfmt, clippy
- uses: taiki-e/install-action@cargo-llvm-cov
- uses: taiki-e/install-action@nextest
- name: Lint (clippy)
run: cargo clippy --all-features --all-targets
- name: Run tests (with coverage)
run: cargo llvm-cov nextest --profile ci
- name: Generate coverage report
run: cargo llvm-cov report --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}