Skip to content

Commit e5dfaad

Browse files
Removes macOS runner for the moment as it doesn't support docker
1 parent 8d8eaab commit e5dfaad

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/main.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,20 @@ jobs:
66
test-start:
77
strategy:
88
matrix:
9-
os: [ubuntu-latest, macOS-latest]
9+
os: [ubuntu-latest]
1010

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

15-
- name: Install docker on macOS
15+
- name: Install docker
1616
uses: docker-practice/actions-setup-docker@master
17-
if: ${{ matrix.os == 'macOS-latest' }}
18-
17+
1918
- name: Run setup script
2019
run: ./setup.sh
2120

2221
- name: Start the stack
2322
run: docker-compose up -d
2423

2524
- name: Check if system comes up
26-
run: ./.github/workflows/healthCheck.sh
25+
run: ./.github/workflows/healthCheck.sh

0 commit comments

Comments
 (0)