Skip to content

chore: update dependencies and Python version #173

chore: update dependencies and Python version

chore: update dependencies and Python version #173

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: pip install poetry && make dependencies
- name: Lint project
run: make lint
- name: Test with pytest
run: make test-cov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3