Skip to content

Commit 2bb1653

Browse files
authored
Create lint.yml
1 parent 400b030 commit 2bb1653

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/lint.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Lint
2+
on: push
3+
jobs:
4+
5+
lint:
6+
name: Lint
7+
runs-on: ubuntu-20.04
8+
9+
steps:
10+
- name: Checkout repository and submodules
11+
uses: actions/checkout@v2
12+
with:
13+
submodules: recursive
14+
- name: Setup
15+
uses: ExpressApp/[email protected]
16+
with:
17+
python-version: "3.8.12"
18+
poetry-version: "1.1.12"
19+
20+
- name: Run lint
21+
run: |
22+
source .venv/bin/activate
23+
./scripts/lint

0 commit comments

Comments
 (0)