We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 392e473 commit ac7db18Copy full SHA for ac7db18
1 file changed
.github/workflows/check.yml
@@ -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