-
Notifications
You must be signed in to change notification settings - Fork 603
47 lines (38 loc) · 1.37 KB
/
format.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Formatting check
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
black-pylint:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: pip install black pylint==2.7.4 isort==5.13.2
- uses: actions/checkout@v2
- name: Run Black
run: |
black -t py310 -t py311 -t py312 -l 100 pennylane/ --check
black -t py310 -t py311 -t py312 -l 100 tests/ --check
- name: Run isort
run: |
isort --py 312 --profile black -l 100 -o autoray -p ./pennylane --skip __init__.py --filter-files ./pennylane --check
isort --py 312 --profile black -l 100 -o autoray -p ./pennylane --skip __init__.py --filter-files ./tests --check
- name: Run Pylint (source files)
if: always()
run: pylint --rcfile .pylintrc $(find pennylane -name "*.py")
- name: Run Pylint (test files)
if: always()
run: pylint --rcfile tests/.pylintrc $(find tests -name "*.py")