Skip to content

Support python 3.13 #157

Support python 3.13

Support python 3.13 #157

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: ci
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.13.0-beta.4"]
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 poetry
uses: abatilo/actions-poetry@v3
- name: Dependencies
run: |
poetry config virtualenvs.create false
poetry install
- name: Lint
run: |
poe lint
- name: Tests
run: |
if python --version | grep -q 'Python 3.13' ; then
poe test
fi
- name: Coverage
uses: codecov/codecov-action@v2.1.0