Skip to content

Bump github.com/onsi/gomega from 1.30.0 to 1.31.0 #260

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

Bump github.com/onsi/gomega from 1.30.0 to 1.31.0 #260

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
services:
rabbitmq:
image: rabbitmq:3.11-management
ports:
- 15672:15672
- 5672:5672
strategy:
matrix:
go: ["1.19", "1.20"]
steps:
- name: CHECKOUT
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Print Go version
run: go version
- name: Wait for node to start booting
run: sleep 15
- name: Configure broker
run: RABBITHOLE_RABBITMQCTL=DOCKER:${{job.services.rabbitmq.id}} bin/ci/before_build.sh
- name: Run tests
run: make