2021-01-16 06:34:06 +00:00
|
|
|
name: build
|
2021-01-15 15:29:46 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-17 10:57:49 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-02-06 11:05:47 +00:00
|
|
|
|
2023-04-14 04:16:51 +00:00
|
|
|
- uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version: 1.19
|
|
|
|
|
2021-01-15 15:29:46 +00:00
|
|
|
- name: Build
|
|
|
|
run: go build -v ./...
|
|
|
|
|
|
|
|
- name: Test
|
2021-01-19 12:11:25 +00:00
|
|
|
run: go test -v ./... -covermode=count -coverprofile=cover.out
|
2021-01-19 10:20:26 +00:00
|
|
|
|
2022-10-17 10:57:49 +00:00
|
|
|
- name: Vet
|
|
|
|
run: go vet ./...
|
2021-02-06 11:05:47 +00:00
|
|
|
|
2021-01-19 12:11:25 +00:00
|
|
|
- uses: codecov/codecov-action@v1
|
2021-01-19 10:20:26 +00:00
|
|
|
with:
|
2021-01-19 12:11:25 +00:00
|
|
|
flags: unittests
|