Bump chrono from 0.4.23 to 0.4.31 in /gateway #677
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: 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 ) | |