Skip to content

Merge pull request #26 from jenting/dependabot/go_modules/sigs.k8s.io… #56

Merge pull request #26 from jenting/dependabot/go_modules/sigs.k8s.io…

Merge pull request #26 from jenting/dependabot/go_modules/sigs.k8s.io… #56

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
go:
- '1.20'
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Go test
run: make test
- name: Go build
run: make build