Skip to content

Bump github.com/onsi/gomega from 1.32.0 to 1.33.1 #113

Bump github.com/onsi/gomega from 1.32.0 to 1.33.1

Bump github.com/onsi/gomega from 1.32.0 to 1.33.1 #113

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- run: go version
- name: Checkout repository
uses: actions/checkout@v3
- name: Examine source code
run: go vet -v ./...
- name: Build
run: go build -v ./...
- name: Test
run: make test/codecov
- name: Finish
run: bash <(curl -s https://codecov.io/bash)