-
-
Notifications
You must be signed in to change notification settings - Fork 70
70 lines (57 loc) · 1.59 KB
/
ci.yaml
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
name: CI
on: [pull_request]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20', '1.21']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Install dependencies
run: go mod vendor
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
golangci_lint_flags: "--config=.golangci.yaml"
reporter: github-pr-review
go_version: ${{ matrix.go }}
cache: false # managed by actions/setup-go
- name: Tests
run: make tests
env:
WITH_COVERAGE: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: matrix.go == '1.21'
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
doc:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: nosborn/github-action-markdown-cli@v3.3.0
with:
files: ./doc/
config_file: .markdownlint.json
- uses: reviewdog/action-misspell@v1
with:
github_token: ${{ github.token }}
reporter: github-pr-review
locale: "US"
exclude: |
./vendor/*
- name: alexjs
uses: reviewdog/action-alex@v1
with:
workdir: ./doc/
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
level: warning