-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (78 loc) · 2.25 KB
/
test_release.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
71
72
73
74
75
76
77
78
79
80
81
name: Lint, Test and Release
on:
push:
branches:
- 'develop'
- 'main'
paths:
- '**.go'
- '**.mod'
- '**.sum'
- 'Dockerfile'
pull_request:
branches:
- 'develop'
- 'main'
paths:
- '**.go'
- '**.mod'
- '**.sum'
- 'Dockerfile'
env:
GO_VERSION: 1.21
jobs:
# build workflow
Test:
needs: Lint
runs-on: ubuntu-latest
steps:
- name: set up go ${{env.GO_VERSION}}
uses: actions/setup-go@v4
with:
go-version: ${{env.GO_VERSION}}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Run build
run: go build -v ./...
- name: Test
run: go test -v ./...
Lint:
runs-on: ubuntu-latest
steps:
- name: set up go ${{env.GO_VERSION}}
uses: actions/setup-go@v4
with:
go-version: ${{env.GO_VERSION}}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
args: --timeout 5m
Semantic-Release:
if: ${{ github.event_name == 'push' }}
needs: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.SEMANTIC_TOKEN }}
- name: Setup NodeJS
uses: actions/setup-node@v3
- name: Setup package.json
run: echo '{"name":"semantic-release", "devDependencies":{"@semantic-release/changelog":"^6.0.1","@semantic-release/exec":"^6.0.3","@semantic-release/git":"^10.0.1","@semantic-release/release-notes-generator":"^10.0.3","conventional-changelog-conventionalcommits":"^5.0.0","semantic-release":"^21.0.2"}}' > package.json
- name: Install dependencies
run: npm install
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.SEMANTIC_TOKEN }}