Skip to content

CI: Add code coverage #2

CI: Add code coverage

CI: Add code coverage #2

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
paths-ignore: [ "README.md" ]
pull_request:
branches: [ "master" ]
paths-ignore: [ "README.md" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get rules from SigmaHQ for testing
run: |
wget https://github.com/SigmaHQ/sigma/releases/download/r2024-09-02/sigma_all_rules.zip
unzip sigma_all_rules.zip -d sigma-main-rules
- name: Build
run: cargo build
- name: Run tests
run: cargo test -- --nocapture
- name: Run tests without default features
run: cargo test --no-default-features -- --nocapture
- name: Run Clippy
run: cargo clippy --all-targets --all-features
- name: Check fmt
run: cargo fmt --all -- --check
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cargo-llvm-cov
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:
files: lcov.info
fail_ci_if_error: true
release:
runs-on: ubuntu-latest
needs: [ build ]
if: startsWith(github.ref, 'refs/tags/v')
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true