uam-docker/.github/workflows/push.yml

17 lines
532 B
YAML
Raw Normal View History

2022-12-26 22:32:36 +01:00
name: run-docker-compose-workflow
on: [push, workflow_dispatch]
2022-12-26 22:32:36 +01:00
jobs:
single-instance-test:
2022-12-26 22:32:36 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the stack
2022-12-26 22:51:23 +01:00
run: cd uam && PBKEY=${{ secrets.PBKEY }} docker-compose up -d
2022-12-26 22:32:36 +01:00
- name: Sleep until uam is running
run: sleep 100s
shell: bash
- name: Test if uam mining port is open
2022-12-26 22:32:36 +01:00
run: nc -z -w30 127.0.0.1 4156
- name: Test if uam http statistics port is open
run: nc -z -w30 127.0.0.1 17099