Skip to content

bump min required python, update CI #16

bump min required python, update CI

bump min required python, update CI #16

Workflow file for this run

name: Run Tests
on:
push:
branches: ['*']
pull_request:
branches: ['*']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
python -m pip install --upgrade pip
pip install '.[testing]'
- name: Run mypy
run: |
mypy --install-types --non-interactive ./calcurse_load ./gcal_index
- name: Run pytest
run: |
pytest
- name: Run flake8
run: |
flake8 ./calcurse_load ./gcal_index