We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fda1ae commit eff3ea1Copy full SHA for eff3ea1
1 file changed
.github/workflows/lint.yml
@@ -0,0 +1,28 @@
1
+name: Lint
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ lint:
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v4
13
14
+ - name: Set up Python
15
+ uses: actions/setup-python@v5
16
+ with:
17
+ python-version: '3.11'
18
19
+ - name: Install Poetry
20
+ run: |
21
+ python -m pip install --upgrade pip
22
+ pip install poetry
23
24
+ - name: Install dependencies (with dev)
25
+ run: poetry install --with dev --no-interaction
26
27
+ - name: Run lint
28
+ run: make lint
0 commit comments