Skip to content

Update module github.com/ThreeDotsLabs/watermill to v1.3.3 #338

Update module github.com/ThreeDotsLabs/watermill to v1.3.3

Update module github.com/ThreeDotsLabs/watermill to v1.3.3 #338

Workflow file for this run

---
name: test & lint
on:
push:
pull_request:
jobs:
code-lint:
name: code-lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
args: --timeout=5m
version: latest
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Run go tests and generate coverage report
run: make unit-test