Skip to content

Add python 3.13 to github actions tests #97

Add python 3.13 to github actions tests

Add python 3.13 to github actions tests #97

Workflow file for this run

name: test
on:
push
jobs:
test-unit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ['3.8', '3.13']

Check failure on line 15 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 15, Col: 27): A sequence was not expected
- name: Install dependencies
run: make venv-test-unit
- run: . venv/bin/activate && make test && python -m coverage xml
- name: Upload Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml