Skip to content

Bumped min Python version to 3.9, minor tweaks to use pathlib instead… #85

Bumped min Python version to 3.9, minor tweaks to use pathlib instead…

Bumped min Python version to 3.9, minor tweaks to use pathlib instead… #85

name: tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install ".[dev]"
- name: Run ruff linter
run: |
ruff src/iceaddr
- name: Test with pytest
run: |
python -m pytest -vvv