Skip to content

2024-11-01 15:15:25: merge [master:4ecc84af3da54a5ebe4c3b0283a84b862c… #20

2024-11-01 15:15:25: merge [master:4ecc84af3da54a5ebe4c3b0283a84b862c…

2024-11-01 15:15:25: merge [master:4ecc84af3da54a5ebe4c3b0283a84b862c… #20

Workflow file for this run

name: Build and test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container: golang:1.23
steps:
- uses: actions/checkout@v2
- name: Run coverage
env:
RMQ_HOST: rmq
run: go test -race -coverpkg=./... -coverprofile=coverage.out -covermode=atomic ./...
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true