Change black version #63
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
cache: pip | |
cache-dependency-path: | | |
requirements.txt | |
requirements-dev.txt | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt -r requirements-dev.txt | |
- name: Install Julia dependencies | |
run: julia -e 'import Pkg; Pkg.add("SDDP");Pkg.add("Clp");Pkg.add("JuMP");Pkg.add("PythonCall")' | |
- name: Test | |
run: | | |
pytest --cov --cov-report xml | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: python-code-coverage-report | |
path: coverage.xml | |
- name: Check typing | |
run: | | |
python -m mypy src | |
- name: Check imports sort order | |
uses: isort/isort-action@v1 | |
with: | |
sort-paths: src, tests | |
configuration: --profile black --check-only --diff | |
requirements-files: "requirements.txt requirements-dev.txt" | |
- name: Check formatting | |
uses: psf/black@stable | |
with: | |
# Version of Black should match the versions set in `requirements-dev.txt` | |
version: "~=24.3.0" | |
options: --check --diff | |