Skip to content

Commit

Permalink
Use matrix to run on different architectures and OS
Browse files Browse the repository at this point in the history
  • Loading branch information
hansott committed Jan 8, 2025
1 parent 7cb8403 commit 9723c69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/smoke-test-ffi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ on: [pull_request]

jobs:
test:
runs-on: ubuntu-latest
runs-on: {{ matrix.os }}
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest, ubuntu-latest-arm, windows-latest, windows-latest-arm, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: 3.12

- name: Install dependencies
run: make install
Expand Down

0 comments on commit 9723c69

Please sign in to comment.