Add CI for single instance uam

This commit is contained in:
Tha_14 2022-12-26 23:32:36 +02:00 committed by GitHub
parent 77057b2087
commit 29d3693a2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

14
.github/workflows/push.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: run-docker-compose-workflow
on: repository_dispatch #change to push when it's all working
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the stack
run: cd uam && docker-compose up -d
- name: Sleep until uam is running
run: sleep 100s
shell: bash
- name: Test if port is open
run: nc -z -w30 127.0.0.1 4156