File: python.yml

package info (click to toggle)
pax-utils 1.3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 864 kB
  • sloc: ansic: 10,028; python: 687; sh: 444; makefile: 13
file content (28 lines) | stat: -rw-r--r-- 736 bytes parent folder | download
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
# GitHub actions workflow.
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions

name: Python

on: [push, pull_request]

jobs:
  python:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    # NB: v1.4.0 covers Python 3.8.
    - uses: ricardochaves/python-lint@v1.4.0
      with:
        python-root-list: lddtree.py pylint
        use-pylint: true
        use-pycodestyle: false
        use-flake8: false
        use-black: true
        use-mypy: true
        use-isort: true
        extra-pylint-options: ""
        extra-pycodestyle-options: ""
        extra-flake8-options: ""
        extra-black-options: ""
        extra-mypy-options: ""
        extra-isort-options: ""