##// END OF EJS Templates
update darker/black (#14567)
update darker/black (#14567)

File last commit:

r28947:dbf3a922
r28952:39c7d0e0 merge
Show More
python-package.yml
40 lines | 1.1 KiB | text/x-yaml | YamlLexer
Matthias Bussonnier
Test formatting on GHaction.
r26132 # 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
Matthias Bussonnier
SEC: force workflows to be read-only....
r27782 permissions:
contents: read
Matthias Bussonnier
Test formatting on GHaction.
r26132 on:
push:
Jarrod Millman
Rename master to main
r27712 branches: [ main, 7.x ]
Matthias Bussonnier
Test formatting on GHaction.
r26132 pull_request:
Jarrod Millman
Rename master to main
r27712 branches: [ main, 7.x ]
Matthias Bussonnier
Test formatting on GHaction.
r26132
jobs:
Matthias Bussonnier
cleanup
r27275 formatting:
Matthias Bussonnier
Test formatting on GHaction.
r26132
runs-on: ubuntu-latest
Matthias Bussonnier
cleanup
r27275 timeout-minutes: 5
Matthias Bussonnier
Test formatting on GHaction.
r26132 steps:
Brigitta Sipőcz
CI: update actions version
r28856 - uses: actions/checkout@v4
martinRenou
Pin black in CI...
r27480 with:
Matthias Bussonnier
try to fix build
r26138 fetch-depth: 0
Christian Clauss
Upgrade GitHub Actions
r27726 - name: Set up Python
Brigitta Sipőcz
CI: update actions version
r28856 uses: actions/setup-python@v5
Matthias Bussonnier
Test formatting on GHaction.
r26132 with:
Christian Clauss
Upgrade GitHub Actions
r27726 python-version: 3.x
Matthias Bussonnier
Test formatting on GHaction.
r26132 - name: Install dependencies
run: |
python -m pip install --upgrade pip
krassowski
Remove no longer needed note about mypy and mention darker/black...
r28649 # when changing the versions please update CONTRIBUTING.md too
M Bussonnier
update darker/black
r28947 pip install --only-binary ':all:' darker==2.1.1 black==24.10.0
Matthias Bussonnier
Test formatting on GHaction.
r26132 - name: Lint with darker
run: |
darker -r 60625f241f298b5039cb2debc365db38aa7bb522 --check --diff . || (
echo "Changes need auto-formatting. Run:"
Michael Bianco
correct ci message
r28697 echo " darker -r 60625f241f298b5039cb2debc365db38aa7bb522 ."
Matthias Bussonnier
Test formatting on GHaction.
r26132 echo "then commit and push changes to fix."
exit 1
)