Skip to content

fix: update GitHub Action to use Python 3.13 to support typing requir… #2

fix: update GitHub Action to use Python 3.13 to support typing requir…

fix: update GitHub Action to use Python 3.13 to support typing requir… #2

Workflow file for this run

name: API workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Test singstat package
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install requirements
run: pip install -r requirements_dev.txt
- name: Run tests and collect coverage
run: pytest --cov=singstat --cov-report=xml
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}