Skip to content

Bump github.com/onsi/gomega from 1.30.0 to 1.31.1 #145

Bump github.com/onsi/gomega from 1.30.0 to 1.31.1

Bump github.com/onsi/gomega from 1.30.0 to 1.31.1 #145

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