-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (46 loc) · 1.21 KB
/
ci.yaml
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
name: Build & Test
on: [push]
env:
IMAGE: saferwall/webapis
jobs:
test:
name: Build & Test Go Package
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: |
go env -w GOFLAGS=-mod=mod
go build -v ./...
- name: Test With Coverage
run: go test ./... -race -coverprofile=coverage -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59
build-container:
runs-on: ubuntu-20.04
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build container
id: docker_build
uses: docker/build-push-action@v6
with:
push: false
tags: ${{ env.IMAGE }}:latest