-
Notifications
You must be signed in to change notification settings - Fork 9
63 lines (52 loc) · 1.4 KB
/
pullRequestMaster.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
---
name: pull_request_master
on:
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go 1.21
uses: actions/setup-go@v4
with:
go-version: '1.21'
check-latest: true
- name: Download dependencies
run: |
go mod tidy
go mod download
- name: Run go vet
run: go vet ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55
- name: Run tests
run: make test
- name: Run test coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
PATH="${PATH}:$(go env GOPATH)/bin"
GO111MODULE=off go get -u github.com/mattn/goveralls
goveralls -coverprofile=coverage.out -service=github
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: go
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
- name: Build binary
run: make build
- name: Build Docker image
run: make image
- name: Push Docker image
env:
DOCKER_USER: "${{ secrets.DOCKER_USER }}"
DOCKER_PASS: "${{ secrets.DOCKER_PASS }}"
run: make push