Skip to content

Use Python 3.13

Use Python 3.13 #25

Workflow file for this run

name: ci
on: [push, pull_request, workflow_dispatch]
jobs:
test-and-coverage:
strategy:
matrix:
python-version: ['2.7','3.5','3.13']
container:
image: python:${{ matrix.python-version }}
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v4
- name: Test
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov
python -m pytest --cov
- name: Coveralls
if: matrix.python-version == '3.13'
uses: coverallsapp/github-action@v2