Skip to content

Commit 4d8c201

Browse files
authored
Create linter-check.yml
1 parent f8ff400 commit 4d8c201

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/linter-check.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
runs-on: ubuntu-latest
16+
steps:
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+
with:
28+
coverageCommand: make test-coverage

0 commit comments

Comments
 (0)