-
Notifications
You must be signed in to change notification settings - Fork 4
45 lines (44 loc) · 1.15 KB
/
build.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: Build
on:
- pull_request
- push
jobs:
lint:
name: Lint the otc-auth source code
runs-on: ubuntu-22.04
steps:
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: ^1.20
- name: Checkout
uses: actions/checkout@v4
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
github-token: ${{ secrets.GITHUB_TOKEN }}
build:
name: Build the otc-auth
runs-on: ubuntu-22.04
steps:
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: ^1.20
- name: Checkout
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: go build -v -o otc-auth .
- name: Upload the built binary executable for testing
uses: actions/upload-artifact@v4
with:
name: build
path: otc-auth