Skip to content

chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #170

chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0

chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #170

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: go build
run: go build -v .
- name: go test
run: go test ./...