Skip to content

Commit

Permalink
Removes macOS runner for the moment as it doesn't support docker
Browse files Browse the repository at this point in the history
  • Loading branch information
derkaiserreich authored Sep 3, 2024
1 parent 8d8eaab commit e5dfaad
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,20 @@ jobs:
test-start:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

- name: Install docker on macOS
- name: Install docker
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
run: ./.github/workflows/healthCheck.sh

0 comments on commit e5dfaad

Please sign in to comment.