Skip to content

Commit

Permalink
Add docker support for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Verhoog committed Feb 17, 2024
1 parent 3656988 commit 3f8e876
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,12 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: install deps
run: pip install .[testing]

- name: Install Docker on macOS
if: runner.os == 'macOS'
run: |
brew install --cask docker
colima start
while ! docker system info > /dev/null 2>&1; do sleep 1; done
- run: |
riot run -p ${{ matrix.python-version}} test

0 comments on commit 3f8e876

Please sign in to comment.