-
Notifications
You must be signed in to change notification settings - Fork 39
44 lines (35 loc) · 1.08 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
name: Formatting check
on:
pull_request:
push:
branches:
- master
concurrency:
group: format-${{ github.ref }}
cancel-in-progress: true
jobs:
format-python:
name: Format (Python)
runs-on: ubuntu-22.04
steps:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Checkout PennyLane-Lightning
uses: actions/checkout@v4
- name: Install dependencies
run:
python -m pip install -r requirements-dev.txt
- name: Run isort & black --check
run: make format-python check=1 verbose=1
format-cpp:
name: Format (C++)
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt update && sudo apt -y install python3 python3-pip python-is-python3 && python -m pip install -r requirements-dev.txt
- name: Run formatter
run: PATH=$PATH:/home/ubuntu/.local/bin/:$(dirname $(which python3))/ ./bin/format --check ./pennylane_lightning/core/src