Skip to content

Commit

Permalink
Test 3.12 on both win & linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Willemsen committed Nov 25, 2024
1 parent 377fff7 commit 4f5f6fd
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/Lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,25 @@ jobs:
compare-branch: origin/main
python-ver: '3.11'
tests:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
version: ['3.10','3.11','3.12']
os: [ "ubuntu-latest", "windows-latest" ]
version: ['3.10', '3.11', '3.12']
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
- name: install requirements
run: pip install -e .[dev]
- name: run pytest
- name: run pytest (linux)
run: IBEX_BLUESKY_CORE_LOGS=/tmp/ibex_bluesky_core_logs/ python -m pytest
if: startsWith(matrix.os,'ubuntu')
- name: run pytest (windows)
run: python -m pytest
if: startsWith(matrix.os,'windows')
results:
if: ${{ always() }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4f5f6fd

Please sign in to comment.