File: python-lint.yaml

package info (click to toggle)
seastar 25.05.0-1
  • links: PTS
  • area: main
  • in suites: sid
  • size: 7,256 kB
  • sloc: cpp: 89,250; python: 5,066; ansic: 3,452; sh: 1,272; xml: 177; makefile: 9
file content (16 lines) | stat: -rw-r--r-- 420 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Python format

on: [push, pull_request]

jobs:
  python-format:
    name: Enforce python format
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: psf/black@24.8.0
        with:
            version: "24.8.0"
            src: ./scripts
            # override options so that we can specify only specific files for now
            options: "--check --diff --include=.*addr2line.*"