-
Notifications
You must be signed in to change notification settings - Fork 19
59 lines (51 loc) · 1.39 KB
/
Copy pathci.yml
File metadata and controls
59 lines (51 loc) · 1.39 KB
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
name: CI
# Free forever for public GitHub repos:
# - go test
# - golangci-lint (open source)
# - reviewdog PR line comments (open source, uses GITHUB_TOKEN only)
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
pull-requests: write
checks: write
jobs:
test:
name: Go Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Test
# Integration tests self-skip without live env vars / DSN.
run: go test ./...
lint:
name: Lint & PR Review
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: golangci-lint with reviewdog
uses: reviewdog/action-golangci-lint@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
go_version_file: go.mod
golangci_lint_flags: "--timeout=5m"
# Only report issues on added lines so historical noise doesn't block every PR.
filter_mode: added
# PR: inline review comments. Non-PR: annotations via check.
reporter: github-pr-review
fail_on_error: true