-
Notifications
You must be signed in to change notification settings - Fork 1
77 lines (63 loc) · 1.68 KB
/
Copy pathtest.yaml
File metadata and controls
77 lines (63 loc) · 1.68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Test
on:
pull_request:
push:
branches:
- main
env:
GO_VERSION: "1.26.x"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version: ${{ env.GO_VERSION }}
- name: Lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.10
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version: ${{ env.GO_VERSION }}
- name: Verify generated code is up to date
run: |
go generate ./...
if [[ -n "$(git status --porcelain)" ]]; then
echo "::error::Generated code is out of date. Run 'go generate ./...' locally and commit the result."
echo "Files changed or created by 'go generate':"
git status --short
echo
echo "Diff:"
git --no-pager diff
exit 1
fi
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version: ${{ env.GO_VERSION }}
- name: Test
run: go test -v ./...
env:
TWAPI_SERVER: https://tw-test-eu.rafael.net.br
TWAPI_TOKEN: ${{ secrets.TWAPI_TOKEN }}