##// END OF EJS Templates
style fix
style fix

File last commit:

r28649:b66c93b8
r28696:9db3d2b6
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:
Christian Clauss
Upgrade GitHub Actions
r27726 - uses: actions/checkout@v3
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
uses: actions/setup-python@v4
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
Matthias Bussonnier
try to install only binaries
r28172 pip install --only-binary ':all:' darker==1.5.1 black==22.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:"
echo " darker -r 60625f241f298b5039cb2debc365db38aa7bb522"
echo "then commit and push changes to fix."
exit 1
)