-
Notifications
You must be signed in to change notification settings - Fork 163
58 lines (54 loc) · 1.37 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Run Tests
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/[email protected]
with:
go-version: "1.18.x"
- name: Checkout code
uses: actions/[email protected]
- name: Run linters
uses: golangci/[email protected]
with:
version: "v1.45.2"
test:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
if: success()
uses: actions/[email protected]
with:
go-version: "1.18.x"
- name: Checkout code
uses: actions/[email protected]
- 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
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install Go
if: success()
uses: actions/[email protected]
with:
go-version: "1.18.x"
- name: Generate coverage
run: go test -race -covermode=atomic -coverprofile=coverage.out
- uses: codecov/[email protected]
with:
files: ./coverage.out