-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (60 loc) · 1.87 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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