Removes macOS runner for the moment as it doesn't support docker #17
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: Docker startup tests | |
on: | |
push | |
jobs: | |
test-start: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install docker | |
uses: docker-practice/actions-setup-docker@master | |
- name: Run setup script | |
run: ./setup.sh | |
- name: Start the stack | |
run: docker-compose up -d | |
- name: Check if system comes up | |
run: ./.github/workflows/healthCheck.sh |