Skip to content

TT-448: add integration test for bundle update #119

TT-448: add integration test for bundle update

TT-448: add integration test for bundle update #119

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@v4
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