Remove Database Binaries && Use DDL to Create Database if Not Found #19
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 integration tests | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{github.head_ref}} | |
fetch-depth: 0 | |
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }} | |
- uses: jupyterhub/action-k3s-helm@v3 | |
with: | |
docker-enabled: true | |
- name: Docker Build | |
run: docker build -t jasminegraph . | |
- name: Grant default user permissions | |
run: kubectl apply -f ./.github/workflows/resources/test-rbac.yaml | |
- name: K8S integration tests | |
run: | | |
chmod +x test-k8s.sh | |
./test-k8s.sh |