Skip to content

[MAINT] Support python 3.12 (#667) #29

[MAINT] Support python 3.12 (#667)

[MAINT] Support python 3.12 (#667) #29

Workflow file for this run

name: Test
on:
push:
branches: ["dev", "refactoring", "clinicadl_v2"]
pull_request:
branches: ["dev", "refactoring", "clinicadl_v2"]
permissions:
contents: read
jobs:
test:
name: Test on ${{ matrix.os }} with Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
<<<<<<< HEAD

Check failure on line 20 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
<<<<<<< HEAD
python-version: [ '3.9', '3.10', '3.11', '3.12']
=======
python-version: ['3.9', '3.10', '3.11']
>>>>>>> 78ccf96c ([MAINT] Drop python 3.8 (#663))
=======
python-version: ['3.9', '3.10', '3.11', '3.12']
>>>>>>> 3c40944b ([MAINT] Support python `3.12` (#667))
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Run unit tests
run: make test