Updates Structr version #16
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, macOS-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install docker on macOS | |
uses: docker-practice/actions-setup-docker@master | |
if: ${{ matrix.os == 'macOS-latest' }} | |
- 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 |