Skip to content

Add new device auth flow to Keycloak #589

Add new device auth flow to Keycloak

Add new device auth flow to Keycloak #589

Workflow file for this run

name: K8s tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_call:
env:
SELF_HOSTED_RUNNER: true
jobs:
build:
runs-on: private
steps:
- uses: actions/checkout@v2
- name: Prepare K3d cluster
run: |
if [ -z "${SELF_HOSTED_RUNNER}" ]; then
( cd ./test && bash ./prepare-platform.sh )
else
( cd ./test && bash ./prepare-platform-for-self-hosted-runner.sh )
fi
- name: Prepare Bats framework
run: |
cd ./test/bats
bash ./prepare-test.sh
bats linting.bats
shellcheck *.sh *.bats test-*/*.bats
- name: Build Platform locally
run: |
cd test && bash build-local-platform.sh
- name: Install from local registry
run: cd test && bash install-local-platform.sh
- name: Run all e2e tests
run: |
cd ./test/bats
bats */*.bats
- name: Build and test shacl2flink
run: |
( cd semantic-model/shacl2flink && make setup && make lint test test-kms )
( cd semantic-model/shacl2flink && make test-full-flink-deployment )