Skip to content

Merge pull request #95 from flannel-io/dependabot/go_modules/github.c… #206

Merge pull request #95 from flannel-io/dependabot/go_modules/github.c…

Merge pull request #95 from flannel-io/dependabot/go_modules/github.c… #206

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.21.11" ]
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