##// END OF EJS Templates
SEC: force workflows to be read-only....
SEC: force workflows to be read-only. Via tidelift and suggested by https://deps.dev/pypi/ipython

File last commit:

r27782:ef9f0dec
r27782:ef9f0dec
Show More
python-package.yml
39 lines | 1.0 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
martinRenou
Pin black in CI...
r27480 pip install darker black==21.12b0
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
)