mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 12:25:53 +02:00
62 lines
1.4 KiB
YAML
62 lines
1.4 KiB
YAML
name: Go tests (windows)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- releases/**
|
|
paths-ignore:
|
|
- 'README.md'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- releases/**
|
|
paths-ignore:
|
|
- 'README.md'
|
|
|
|
env:
|
|
RICHGO_FORCE_COLOR: 1
|
|
CROWDSEC_FEATURE_DISABLE_HTTP_RETRY_BACKOFF: true
|
|
|
|
jobs:
|
|
build:
|
|
name: "Build + tests"
|
|
runs-on: windows-2022
|
|
|
|
steps:
|
|
|
|
- name: Check out CrowdSec repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: false
|
|
|
|
- name: "Set up Go"
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.22"
|
|
|
|
- name: Build
|
|
run: |
|
|
make build BUILD_RE2_WASM=1
|
|
|
|
- name: Run tests
|
|
run: |
|
|
go install github.com/kyoh86/richgo@v0.3.10
|
|
go test -tags expr_debug -coverprofile coverage.out -covermode=atomic ./... > out.txt
|
|
if(!$?) { cat out.txt | sed 's/ *coverage:.*of statements in.*//' | richgo testfilter; Exit 1 }
|
|
cat out.txt | sed 's/ *coverage:.*of statements in.*//' | richgo testfilter
|
|
|
|
- name: Upload unit coverage to Codecov
|
|
uses: codecov/codecov-action@v4
|
|
with:
|
|
files: coverage.out
|
|
flags: unit-windows
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v6
|
|
with:
|
|
version: v1.60
|
|
args: --issues-exit-code=1 --timeout 10m
|
|
only-new-issues: false
|