chore: Release sigma-rust version 0.3.0 #28
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: CI | |
on: | |
push: | |
tags: [ "v*" ] | |
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: 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: 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: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
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 |