Skip to content

Release 2.2.0

Release 2.2.0 #110

Workflow file for this run

name: Tests
on:
push:
branches:
- develop
pull_request:
jobs:
acceptance:
name: Acceptance Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rmq_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "4.0"]
env:
RABBITMQ_VERSION: ${{ matrix.rmq_version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Tests
id: test
run: make testacc
- name: Publish Test Summary Results
run: |
echo "### RabbitMQ $RABBITMQ_VERSION" >> $GITHUB_STEP_SUMMARY
npx github-actions-ctrf summary ctrf-report.json
npx github-actions-ctrf failed ctrf-report.json
if: always()