Skip to content

Bump github.com/stretchr/testify from 1.8.0 to 1.10.0 #45

Bump github.com/stretchr/testify from 1.8.0 to 1.10.0

Bump github.com/stretchr/testify from 1.8.0 to 1.10.0 #45

Workflow file for this run

name: Golang CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
tests:
strategy:
matrix:
sdk: [1.16, 1.17, 1.18, 1.19, 1.20.x]
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.sdk }}
- name: Run Mockoon CLI
uses: mockoon/cli-action@v2
with:
version: 'latest'
data-file: 'https://raw.githubusercontent.com/conekta/openapi/main/mocks/conekta_api.json'
port: 3000
- name: Run tests
run: |
go test -v --race ./...
env:
BASE_PATH: localhost:3000