Readds macos test runner. #19
This file contains hidden or 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-startup: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Docker on macOS | |
| id: setup-docker | |
| uses: douglascamata/[email protected] | |
| if: ${{ matrix.os == 'macOS-latest' }} | |
| - name: Start the stack | |
| run: docker compose up -d | |
| - name: Check if system comes up | |
| run: ./.github/workflows/healthCheck.sh |