fix: Convert Go regex to Rust regex (#76) #285
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: Code coverage | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths-ignore: | |
- 'docs/**' | |
- 'config/**' | |
- '**.md' | |
- '.dockerignore' | |
- 'docker/**' | |
- '.gitignore' | |
push: | |
branches: | |
- "main" | |
- "develop" | |
paths-ignore: | |
- 'docs/**' | |
- 'config/**' | |
- '**.md' | |
- '.dockerignore' | |
- 'docker/**' | |
- '.gitignore' | |
jobs: | |
coverage: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
env: | |
CARGO_TERM_COLOR: always | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Generate code coverage | |
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
files: lcov.info | |
fail_ci_if_error: true |