1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
permissions:
contents: read
on:
push:
branches: [ main, 7.x, 8.x ]
pull_request:
branches: [ main, 7.x, 8.x ]
jobs:
formatting:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.x
cache: pip
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: |
# when changing the versions please update CONTRIBUTING.md too
uv pip install --system darker==2.1.1 black==24.10.0
- name: Lint with darker
run: |
# disabling darker for now, I can't get it to format the same locally and on CI.
# darker -r 60625f241f298b5039cb2debc365db38aa7bb522 --check --diff . || (
# echo "Changes need auto-formatting. Run:"
# echo " darker -r 60625f241f298b5039cb2debc365db38aa7bb522 ."
# echo "then commit and push changes to fix."
# exit 1
# )
|