Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.20.2 #214

Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.20.2

Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.20.2 #214

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