Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MacOS + Windows Runner for testing #100

Closed
wants to merge 12 commits into from
Closed
12 changes: 11 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ jobs:
tests:
name: Tests

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
os: [macos-13, ubuntu-latest]

steps:
- name: Checkout repository
Expand All @@ -24,6 +25,15 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Debug
id: Debug
if: runner.os == 'macOS'
run: |
brew install docker
brew install colima
colima start
sudo ln -sf $HOME/.colima/default/docker.sock /var/run/docker.sock

- name: Install tox plugin
id: install-tox-gh-actions
run: |
Expand Down
Loading