Skip to content

upgrade to python 3.9 #377

upgrade to python 3.9

upgrade to python 3.9 #377

Workflow file for this run

name: ⚙️ Build
on: [ push ]
jobs:
build:
name: ⚙️🧪 Build and test
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12" ]
steps:
- name: Checkout 🚚
uses: actions/checkout@v4.1.1
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }} 🐍
uses: actions/setup-python@v5.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies ⚙️
run: |
python -m pip install --upgrade pip
pip install -U -e .[testing]
- name: Test 🧪
run: |
python -m unittest discover