Skip to content

Commit e4576c9

Browse files
committed
hello ci
1 parent 76017f0 commit e4576c9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/pr.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
lint:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-python@v3
13+
with:
14+
python-version: "3.8"
15+
- name: Install requirements
16+
run: pip install -r requirements-dev.txt
17+
- name: Run lint
18+
run: make check

0 commit comments

Comments
 (0)