Tests around process termination #425
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
env: | |
TEST_STATS_DELAY: 5000 | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 'stable' | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: latest | |
args: --timeout=30m | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
services: | |
rabbitmq: | |
image: pivotalrabbitmq/rabbitmq:main | |
ports: | |
- 15672:15672 | |
- 5672:5672 | |
- 1883:1883 | |
- 61613:61613 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 'stable' | |
- name: Wait for node to start booting | |
run: sleep 15 | |
- name: Configure broker | |
run: OMQ_RABBITMQCTL=DOCKER:${{job.services.rabbitmq.id}} bin/ci/before_build.sh | |
- name: Run go test | |
run: go run github.com/onsi/ginkgo/v2/ginkgo -r --randomize-all --randomize-suites --fail-on-pending --fail-on-empty --keep-going --race --trace |