Go(deps): bump github.com/go-openapi/runtime from 0.26.0 to 0.26.2 #230
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |