Skip to content

Commit

Permalink
feat(ci): add python build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
justindujardin committed Nov 29, 2023
1 parent eca53e3 commit ca3b7cb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,17 @@ on:

jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: [3.7, 3.8, 3.9, 3.10.6, 3.11]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Setup Packages
run: sh tools/setup.sh
- name: Build Packages
Expand Down

0 comments on commit ca3b7cb

Please sign in to comment.