File: lint.yml

package info (click to toggle)
graphql-core 3.2.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,436 kB
  • sloc: python: 52,406; makefile: 26; sh: 13
file content (25 lines) | stat: -rw-r--r-- 475 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
name: Code quality

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v6

    - name: Set up Python 3.14
      uses: actions/setup-python@v6
      with:
        python-version: 3.14

    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip
        pip install tox

    - name: Run code quality tests with tox
      run: tox
      env:
        TOXENV: black,flake8,mypy,docs,manifest