-
Notifications
You must be signed in to change notification settings - Fork 8
45 lines (35 loc) · 879 Bytes
/
go.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
name: Go
on:
push:
branches: [ development ]
pull_request:
branches: [ development ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: WillAbides/setup-go-faster@v1.14.0
with:
go-version: 1.21
- run: ls ${{ github.workspace }}
- name: Build
run: go build -v ./...
working-directory: ${{ github.workspace }}
- name: Test
run: go test -v ./...
working-directory: ${{ github.workspace }}
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: WillAbides/setup-go-faster@v1.14.0
with:
go-version: 1.21
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
working-directory: ${{ github.workspace }}