-
Notifications
You must be signed in to change notification settings - Fork 1
88 lines (72 loc) · 1.76 KB
/
main.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
TERM: xterm
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.4
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
shell: sh
run: go test -coverprofile=/tmp/code.coverage ./...
- name: Upload coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
go install github.com/mattn/goveralls@latest
goveralls -coverprofile=/tmp/code.coverage -service=github
build:
name: Build
runs-on: ubuntu-latest
env:
TERM: xterm
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.4
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: scripts/build.sh build all
shell: sh
- name: Upload artifacts
uses: actions/upload-artifact@v2-preview
with:
name: artifacts
path: builds/*
release:
name: Release
runs-on: ubuntu-latest
env:
TERM: xterm
if: github.ref == 'refs/heads/master'
needs: build
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Download artifacts
uses: actions/download-artifact@v1
with:
name: artifacts
- name: Upload release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
GH_COMMIT: ${{ github.sha }}
GH_ACTION_ID: ${{ github.run_id }}
run: .github/scripts/release
shell: sh