Skip to content

refactor: Migrate to Python 3.14 #12

refactor: Migrate to Python 3.14

refactor: Migrate to Python 3.14 #12

Workflow file for this run

name: downsample package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools flake8 pytest
- name: Build package
run: |
python -m pip install -e . -v
- name: Test with pytest
run: |
pytest