File: python-package.yml

package info (click to toggle)
ipython 8.35.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 11,900 kB
  • sloc: python: 42,442; sh: 376; makefile: 243
file content (40 lines) | stat: -rw-r--r-- 1,170 bytes parent folder | download | duplicates (3)
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
# 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 ]
  pull_request:
    branches: [ main, 7.x ]

jobs:
  formatting:

    runs-on: ubuntu-latest
    timeout-minutes: 5
    steps:
    - uses: actions/checkout@v4
      with:
        fetch-depth: 0
    - name: Set up Python
      uses: actions/setup-python@v5
      with:
        python-version: 3.x
    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip
        # when changing the versions please update CONTRIBUTING.md too
        pip install --only-binary ':all:' darker==2.1.1 black==24.10.0
    - 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
        )