2019-08-28 22:11:12 +02:00
|
|
|
name: main
|
|
|
|
on:
|
2022-04-17 01:56:39 +02:00
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-08-28 22:11:12 +02:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2020-10-06 14:34:49 +02:00
|
|
|
uses: actions/setup-go@main
|
2019-08-28 22:11:12 +02:00
|
|
|
with:
|
2021-12-02 13:42:25 +01:00
|
|
|
go-version: 1.17
|
2019-08-28 22:11:12 +02:00
|
|
|
id: go
|
2021-10-26 21:08:54 +02:00
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@master
|
2019-08-28 22:11:12 +02:00
|
|
|
- name: Dependencies
|
|
|
|
run: |
|
2021-10-26 20:26:39 +02:00
|
|
|
make install-golint
|
|
|
|
make install-errcheck
|
|
|
|
make install-golangci-lint
|
2019-08-28 22:11:12 +02:00
|
|
|
- name: Build
|
|
|
|
env:
|
|
|
|
GO111MODULE: on
|
|
|
|
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 17:22:56 +02:00
|
|
|
make test-full-386
|
2022-07-13 15:44:39 +02:00
|
|
|
make vmcluster-crossbuild
|