-
Notifications
You must be signed in to change notification settings - Fork 1
71 lines (56 loc) · 1.62 KB
/
Copy pathci.yml
File metadata and controls
71 lines (56 loc) · 1.62 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
name: CI
on:
push:
branches: [ main, master, develop ]
pull_request:
branches: [ main, master, develop ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: Run tests with race detector
run: make test-race
- name: Run test coverage
run: make test-coverage
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Build for multiple platforms
run: |
mkdir -p bin
# Build for Linux AMD64
GOOS=linux GOARCH=amd64 go build -o bin/serveradmin-go-linux-amd64 .
# Build for Linux ARM64
GOOS=linux GOARCH=arm64 go build -o bin/serveradmin-go-linux-arm64 .
# Build for Windows AMD64
GOOS=windows GOARCH=amd64 go build -o bin/serveradmin-go-windows-amd64.exe .
# Build for macOS AMD64
GOOS=darwin GOARCH=amd64 go build -o bin/serveradmin-go-darwin-amd64 .
# Build for macOS ARM64 (Apple Silicon)
GOOS=darwin GOARCH=arm64 go build -o bin/serveradmin-go-darwin-arm64 .
linter:
name: Linter Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: latest