File: flake8.yml

package info (click to toggle)
siphashc 2.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: ansic: 193; python: 141; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 942 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
29
30
31
32
33
34
# This file is maintained in https://github.com/WeblateOrg/meta/
name: Flake8

on:
  push:
    branches-ignore:
      - "dependabot/**"
  pull_request:

jobs:
  flake8:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - uses: actions/cache@v2.1.1
        with:
          path: |
            ~/.cache/pip
            ~/.cache/pre-commit
          key: ${{ runner.os }}-pip-lint-${{ hashFiles('**/requirements*.txt') }}-${{ hashFiles('.pre-commit-config.yaml') }}
      - name: Setup Python
        uses: actions/setup-python@v2.1.2
        with:
          python-version: 3.8
      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip wheel
          pip install -r requirements-lint.txt
      - name: Run flake8
        run: |
          echo "::add-matcher::.github/matchers/flake8.json"
          pre-commit run flake8 --all
          echo "::remove-matcher owner=flake8::"