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

[CI] Run on different platforms (ubuntu/windows/mac/mac m1) #1173

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/python-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,19 @@ concurrency:

jobs:
integration-test:
runs-on: ubuntu-20.04
name: Run integration test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, macos-12, macos-13 ]

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Docker on macOS
if: startsWith(matrix.os, 'macos')
uses: douglascamata/setup-docker-macos-action@v1-alpha
- name: Install
run: make install
- name: Run integration tests
Expand Down