Skip to content

Merge pull request #2 from projectcalico/pedro-golang-1.22.7 #2

Merge pull request #2 from projectcalico/pedro-golang-1.22.7

Merge pull request #2 from projectcalico/pedro-golang-1.22.7 #2

Workflow file for this run

name: build tests for flannel cni-plugin
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: [ "1.22.7" ]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- run: go version
- name: build all
run: make build_all
- name: run tests
run: make test_linux