2019-08-28 20:11:12 +00:00
|
|
|
name: main
|
|
|
|
on:
|
2022-04-16 23:56:39 +00:00
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-08-28 20:11:12 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2020-10-06 12:34:49 +00:00
|
|
|
uses: actions/setup-go@main
|
2019-08-28 20:11:12 +00:00
|
|
|
with:
|
2022-09-14 10:29:19 +00:00
|
|
|
go-version: 1.19.1
|
2019-08-28 20:11:12 +00:00
|
|
|
id: go
|
2021-10-26 19:08:54 +00:00
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@master
|
2019-08-28 20:11:12 +00:00
|
|
|
- name: Dependencies
|
|
|
|
run: |
|
2021-10-26 18:26:39 +00:00
|
|
|
make install-golint
|
|
|
|
make install-errcheck
|
|
|
|
make install-golangci-lint
|
2019-08-28 20:11:12 +00:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
export PATH=$PATH:$(go env GOPATH)/bin # temporary fix. See https://github.com/actions/setup-go/issues/14
|
|
|
|
make check-all
|
|
|
|
git diff --exit-code
|
|
|
|
make test-full
|
|
|
|
make test-pure
|
2019-10-17 15:22:56 +00:00
|
|
|
make test-full-386
|
2022-07-13 13:44:39 +00:00
|
|
|
make vmcluster-crossbuild
|