Skip to content

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

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

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

Workflow file for this run

name: Run Go Tests
on:
push:
branches:
- 'master'
- 'feature/**'
- 'bugfix/**'
- 'improvement/**'
jobs:
test:
runs-on: ubuntu-latest
env:
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.0'
- name: Run Tests
run: go test ./testing -v -count 1