We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5298258 commit 8722c72Copy full SHA for 8722c72
1 file changed
.github/workflows/py.yaml
@@ -11,20 +11,6 @@ on:
11
- master
12
13
jobs:
14
- format:
15
- runs-on: ubuntu-latest
16
- steps:
17
- - uses: actions/checkout@v4
18
- - name: Set up Python 3.11
19
- uses: actions/setup-python@v5
20
- with:
21
- python-version: "3.11"
22
- cache: "pip"
23
- - name: Install linting and formatting dependencies
24
- run: python -m pip install -r requirements.txt
25
- - name: Check formatting
26
- run: make pycheckformat
27
-
28
pythonpackage:
29
needs: format
30
runs-on: ubuntu-latest
@@ -49,6 +35,8 @@ jobs:
49
35
run: python -m pip install wheel
50
36
- name: Install the package
51
37
run: python -m pip install -v --no-build-isolation '.[dev]'
38
+ - name: Check formatting
39
+ run: make pycheckformat
52
40
- name: Code linting
53
41
run: make pylint
54
42
- name: Check that stub files are up-to-date
0 commit comments