-
Notifications
You must be signed in to change notification settings - Fork 163
43 lines (40 loc) · 1012 Bytes
/
go.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
name: Run Tests
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Install Go
uses: actions/[email protected]
with:
go-version-file: 'go.mod'
- name: Run linters
uses: golangci/golangci-lint-action@v6
with:
version: "v1.58"
test:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Install Go
if: success()
uses: actions/[email protected]
with:
go-version-file: 'go.mod'
- run: go test -race ./...
- run: go test -fuzz=. -fuzztime=30s
- run: go test -fuzz=Plain -fuzztime=30s ./internal/charset
- run: go test -fuzz=XML -fuzztime=30s ./internal/charset
- run: go test -fuzz=HTML -fuzztime=30s ./internal/charset