Skip to content

Go(deps): bump github.com/go-openapi/errors from 0.20.4 to 0.21.0 #224

Go(deps): bump github.com/go-openapi/errors from 0.20.4 to 0.21.0

Go(deps): bump github.com/go-openapi/errors from 0.20.4 to 0.21.0 #224

Workflow file for this run

name: Test, Lint, Build
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.20.x'
- 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: Test
run: make test
# - name: Lint
# run: make lint
- name: Build server and client
run: make build
- name: Cache Docker images.
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}-${{ hashFiles('docker-compose.yaml') }}
- name: Start Docker Compose with MongoDB and Tyk Mserv
run: make start
- name: Build and bundle plugins
run: |
make plugin
make bundles
- name: Install Venom command line tool
run: go install github.com/ovh/venom/cmd/venom@latest
- name: Run Venom tests
run: make integration