Skip to content

Commit

Permalink
matrix python version for ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
harry-solcast committed Jul 1, 2024
1 parent 29a1df5 commit 128fce9
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,16 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']

steps:
- uses: actions/checkout@v4
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: |
3.8
3.12
- name: Update pip
run: |
python -m pip install --upgrade pip
python-version: ${{ matrix.python-version }}
- name: Run ci tests
run: |
bash ./scripts/ci.sh
run: bash ./scripts/ci.sh

0 comments on commit 128fce9

Please sign in to comment.