Skip to content

Bump github.com/onsi/gomega from 1.38.2 to 1.38.3 #74

Bump github.com/onsi/gomega from 1.38.2 to 1.38.3

Bump github.com/onsi/gomega from 1.38.2 to 1.38.3 #74

Workflow file for this run

name: pull request
on:
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v9
with:
args: --timeout=5m
build-test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install just
uses: taiki-e/install-action@just
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build and run tests with race detector enabled
run: just test-race