We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3656988 commit 6b1e109Copy full SHA for 6b1e109
.github/workflows/main.yml
@@ -31,5 +31,15 @@ jobs:
31
python-version: ${{ matrix.python-version }}
32
- name: install deps
33
run: pip install .[testing]
34
+
35
+ # Conditional step to install Docker on macOS
36
+ - name: Install Docker on macOS
37
+ if: runner.os == 'macOS'
38
+ run: |
39
+ brew install --cask docker
40
+ # Start Docker.app
41
+ open -a -g /Applications/Docker.app
42
+ # Wait for Docker to start
43
+ while ! docker system info > /dev/null 2>&1; do sleep 1; done
44
- run: |
45
riot run -p ${{ matrix.python-version}} test
0 commit comments