Skip to content

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

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 #12

Workflow file for this run

name: CI/CD
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Fmt
run: go fmt ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test -v ./...
- name: Build
run: go build -v ./...