Skip to content

build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.9.0 #736

build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.9.0

build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.9.0 #736

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: [ '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20', '1.21', '1.22' ]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: make tests
- name: Test coverage
run: make code-coverage
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out
flag-name: Go-${{ matrix.go }}
- name: Deprecations
run: make deprecations