Skip to content

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

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

Workflow file for this run

name: run tests
on:
pull_request:
branches: [ "*" ]
push:
branches:
- "gh-readonly-queue/**/*"
jobs:
testGo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Golang caches
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-golang-
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: '1.21'
- name: run go tests
run: |
go test -v ./...
env:
RUN_INTEGRATION_TESTS: true