We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ff400 commit 4d8c201Copy full SHA for 4d8c201
.github/workflows/linter-check.yml
@@ -0,0 +1,28 @@
1
+name: linter-check
2
+on: [push]
3
+jobs:
4
+ linter-check:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/[email protected]
8
+ - name: install poetry
9
+ run: pip install poetry
10
+ - name: install depenpencies
11
+ run: make install
12
+ - name: run linter
13
+ run: make lint
14
+ coverage:
15
16
17
+ - uses: actions/checkout@master
18
+ - uses: actions/setup-python@v2
19
+ with:
20
+ python-version: 3.10
21
+ - run: |
22
+ pip install poetry
23
+ make install
24
+ - uses: paambaati/[email protected]
25
+ env:
26
+ CC_TEST_REPORTER_ID: 3f39497044781e7e683e61f49d093a13c6215642d769d3169ff201dbd1079af7
27
28
+ coverageCommand: make test-coverage
0 commit comments