-
Notifications
You must be signed in to change notification settings - Fork 1
74 lines (74 loc) · 1.95 KB
/
test.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Test
on:
push:
branches:
- '*'
jobs:
test:
name: Test local sources
strategy:
fail-fast: false
max-parallel: 3
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Test Go
run: go test -v --race ./...
test-release:
name: Test releases
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Try Bump-up Semantic Version
uses: kyoh86/git-vertag-action@v1
with:
method: "patch"
- name: Run GoReleaser (dry-run)
uses: goreleaser/goreleaser-action@v6
with:
args: release --clean --skip=publish --snapshot
test-diagnostics:
name: Find diagnostics
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Search diagnostics
uses: golangci/golangci-lint-action@v4
with:
version: v1.55.2
set-releasable-status:
name: 'Mark commit status "releasable"'
runs-on: ubuntu-latest
needs:
- test
- test-diagnostics
- test-release
steps:
- name: 'Mark commit status "releasable"'
run: |
gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
/repos/${{ github.repository }}/statuses/${{ github.sha }} \
-f state='success' \
-f description='Mark the commit is able to release binary' \
-f context='releasable'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}