mirror of
https://github.com/Tha14/uam-docker.git
synced 2024-11-24 23:23:02 +01:00
16 lines
416 B
YAML
16 lines
416 B
YAML
name: run-docker-compose-workflow
|
|
on: #change to push when it's all working
|
|
workflow_dispatch:
|
|
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
|