Skip to content

Commit 3f8e876

Browse files
committed
Add docker support for macOS
1 parent 3656988 commit 3f8e876

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,12 @@ jobs:
3131
python-version: ${{ matrix.python-version }}
3232
- name: install deps
3333
run: pip install .[testing]
34+
35+
- name: Install Docker on macOS
36+
if: runner.os == 'macOS'
37+
run: |
38+
brew install --cask docker
39+
colima start
40+
while ! docker system info > /dev/null 2>&1; do sleep 1; done
3441
- run: |
3542
riot run -p ${{ matrix.python-version}} test

0 commit comments

Comments
 (0)