Skip to content

Automatically update go.mod #47

Automatically update go.mod

Automatically update go.mod #47

Workflow file for this run

name: Build and run sanity tests
on:
push:
branches:
- "master"
pull_request: {}
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
go:
- '1.20'
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Build
run: make cross
- name: lint
uses: golangci/golangci-lint-action@v3
- name: Tests
run: make test
- name: Upload artifats
uses: actions/upload-artifact@v3
with:
name: crc-admin-helper executables
path: "out/**/*"