Skip to content

bugfix for multi tenancy with reference #8

bugfix for multi tenancy with reference

bugfix for multi tenancy with reference #8

Workflow file for this run

name: Tests
on:
push:
branches:
- '**' # run on ever branch except master (is covered by PR)
- '!master'
jobs:
Unit-Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: true
- name: Unit test
run: ./test/run.sh --unit-only
Integration-Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: true
- name: Integration test
run: ./test/run.sh --integration-only