Skip to content

Commit 804b874

Browse files
Readds matrix with docker install step. Also fixes Structr image tag.
1 parent a995423 commit 804b874

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,18 @@ on:
44

55
jobs:
66
test-start:
7-
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
os: [ubuntu-latest, macOS-latest]
810

11+
runs-on: ${{ matrix.os }}
912
steps:
1013
- uses: actions/checkout@v3
1114

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

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ services:
3737
aliases:
3838
- neo4j
3939
structr:
40-
image: structr:4.3-SNAPSHOT
40+
image: structr/structr:4.3-SNAPSHOT
4141
depends_on:
4242
- neo4j
4343
ports:

0 commit comments

Comments
 (0)