Skip to content

Bump github.com/onsi/gomega from 1.31.1 to 1.32.0 #289

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

Bump github.com/onsi/gomega from 1.31.1 to 1.32.0 #289

Workflow file for this run

name: test
on:
push:
tags:
- v*
branches:
- main
pull_request:
env:
GO_VERSION: '1.22'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v3
with:
path: |
~/go/pkg
~/.cache
key: go-build-${{ hashFiles('**/go.sum') }}
restore-keys: go-build-
- run: make
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v3
with:
path: |
~/go/pkg
~/.cache
key: go-lint-${{ hashFiles('**/go.sum') }}
restore-keys: go-lint-
- run: make lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v3
with:
path: |
~/go/pkg
~/.cache
key: go-lint-${{ hashFiles('**/go.sum') }}
restore-keys: go-lint-
- run: make test
- run: make codecov