Skip to content

Bump github.com/stretchr/testify from 1.8.1 to 1.8.4 #3

Bump github.com/stretchr/testify from 1.8.1 to 1.8.4

Bump github.com/stretchr/testify from 1.8.1 to 1.8.4 #3

Workflow file for this run

name: Test
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Test
run: |
go vet ./...
go test -v ./...
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up go
uses: actions/setup-go@v5
- name: Lint
uses: golangci/golanci-lint-action@v3
with:
args: --timeout=5m