Skip to content

Upgrade python3.12 and dependencies #204

Upgrade python3.12 and dependencies

Upgrade python3.12 and dependencies #204

Workflow file for this run

name: Tests
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
make install-ci
make install-test
- name: Run tests
run: |
make cover-xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}