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 3f8e876Copy full SHA for 3f8e876
.github/workflows/main.yml
@@ -31,5 +31,12 @@ jobs:
31
python-version: ${{ matrix.python-version }}
32
- name: install deps
33
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
41
- run: |
42
riot run -p ${{ matrix.python-version}} test
0 commit comments