mirror of
https://github.com/Tha14/uam-docker.git
synced 2024-11-24 18:03:01 +01:00
Add CI for single instance uam
This commit is contained in:
parent
77057b2087
commit
29d3693a2d
14
.github/workflows/push.yml
vendored
Normal file
14
.github/workflows/push.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user