Skip to content

separated dead letter test into two #60

separated dead letter test into two

separated dead letter test into two #60

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
docker:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Start RabbitMQ
run: docker compose -f tests/docker-compose.yaml up -d
- name: Get cover tooling (1/2)
run: go get golang.org/x/tools/cmd/cover
- name: Get cover tooling (2/2)
run: go get github.com/mattn/goveralls
- name: Test
run: go test -coverprofile=profile.cov -coverpkg=$(go list ./... | paste -sd ',' -) ./...
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
github-token: ${{ secrets.GITHUB_TOKEN }}