Skip to content

Minor change

Minor change #42

Workflow file for this run

# This workflow will install Python dependencies and run code analysis tools
name: Code Analysis
on:
push:
branches: [ "master" ]
paths-ignore:
- README.md
- 'docs/**'
- 'readme/**'
pull_request:
branches: [ "master" ]
paths-ignore:
- README.md
- 'docs/**'
- 'readme/**'
jobs:
code_analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run code analysis
run: |
# Run mypy
mypy .
# Run ruff
ruff check .