Skip to content

Commit ac7db18

Browse files
committed
check
1 parent 392e473 commit ac7db18

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/check.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Check
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
8+
jobs:
9+
Check:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: "3.12"
16+
- name: Install
17+
run: pip install -r requirements.txt
18+
- name: Lint
19+
run: pylint edgee
20+
- name: Test
21+
run: python -m unittest discover -s tests -p 'test_*.py'

0 commit comments

Comments
 (0)