Skip to content

chore(deps): update dependency mypy to v1.20.2 #519

chore(deps): update dependency mypy to v1.20.2

chore(deps): update dependency mypy to v1.20.2 #519

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
jobs:
build:
strategy:
fail-fast: false
matrix:
python-ver:
- '3.10'
- '3.11'
- '3.12'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5.1.0
- name: Setup Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: "${{matrix.python-ver}}"
cache: "pip"
cache-dependency-path: |
**/*requirements*.txt
- name: Install apt deps
run: sudo apt-get update && sudo apt-get install -qq -y libxml2-dev libxslt1-dev
- name: Install dependencies
run: |
pip install -U pip wheel
pip install -Ur requirements-dev.txt
- name: Test with pytest
run: pytest
env:
PYTHONDEVMODE: 1
PYTHONPATH: .
- uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5.5.5
with:
name: build-${{ matrix.python-ver }}
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}