Skip to content

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#91) #78

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#91)

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#91) #78

Workflow file for this run

name: CI
on:
push:
# Avoid duplicate builds on PRs.
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test-and-build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go and dependencies
uses: actions/setup-go@v5
with:
cache: true
go-version-file: go.mod
- name: Test
run: make test
- name: Build
run: make build