Skip to content

Remove 3.8/3.9 CI Builds. Add 3.13 builds #161

Remove 3.8/3.9 CI Builds. Add 3.13 builds

Remove 3.8/3.9 CI Builds. Add 3.13 builds #161

Workflow file for this run

name: later
on: [push, pull_request]
jobs:
build:
name: test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: update pip
run: |
python -m pip install --upgrade pip
- name: pip install later
run: |
python -m pip install -e .[dev]
- name: Run Unitests via coverage
run: |
coverage run -m later.tests.base
- name: Show coverage
run: |
coverage report