Skip to content

mlajkim runs build

mlajkim runs build #33

Workflow file for this run

name: Go Build
run-name: ${{ github.actor }} runs build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-k8s-athenz-syncer:
runs-on: ubuntu-latest
steps:
- name: Setup Go 1.22.x
uses: actions/setup-go@v5
with:
# Semantic version range syntax or exact version of Go
go-version: '1.22.x'
- name: Check out repository code
uses: actions/checkout@v4
- name: Run tests
run: go test -v -race ./...
- name: Print diff
run: diff -u <(echo -n) <(gofmt -d .) || true
- name: Go vet
run: go vet ./...
- name: Go build
run: go build -v -race ./...
- name: Build check e2e tests
run: go test -c -tags=e2e ./test/e2e