File: lint.yml

package info (click to toggle)
websocket-client 1.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,076 kB
  • sloc: python: 5,492; makefile: 17; sh: 13
file content (17 lines) | stat: -rw-r--r-- 342 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Formatting with black

on: [push, pull_request]

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v5
      - uses: actions/setup-python@v6
        with:
          python-version: "3.13"
      - name: Run black
        uses: psf/black@stable
        with:
          options: "--check"
          src: "."