File tree Expand file tree Collapse file tree 3 files changed +9
-17
lines changed Expand file tree Collapse file tree 3 files changed +9
-17
lines changed Original file line number Diff line number Diff line change 59
59
- name : Set up Python
60
60
uses : actions/setup-python@v1
61
61
with :
62
- python-version : 3.9
62
+ python-version : 3.8
63
63
64
64
- name : Set up Poetry
65
65
uses : Gr1N/setup-poetry@v4
Original file line number Diff line number Diff line change 19
19
20
20
strategy :
21
21
matrix :
22
- python-version : [ 3.9 ]
22
+ python-version : [ 3.8 ]
23
23
24
24
steps :
25
25
- name : Checkout source
Original file line number Diff line number Diff line change @@ -12,28 +12,20 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v2
15
- - name : Setup Python 3.9
15
+ - name : Setup Python 3.8
16
16
uses : actions/setup-python@v1
17
17
with :
18
- python-version : 3.9
19
-
20
- - name : Install Poetry
21
-
22
-
23
- - name : Setup node.js (pyright)
24
- uses : actions/setup-node@v1
25
- with :
26
- node-version : " 14"
18
+ python-version : 3.8
27
19
28
20
- name : Install Python deps
29
21
run : |
30
- poetry install --no-dev
31
- poetry run pip install .
22
+ pip install .
32
23
33
24
- name : Type Coverage
34
- run : |
35
- npm install -g pyright
36
- poetry run pyright --lib --ignoreexternal --verifytypes mystbin
25
+ uses : jakebailey/pyright-action@v1
26
+ with :
27
+ python-version : 3.8
28
+ project : " pyproject.toml"
37
29
38
30
- name : Lint
39
31
uses : github/super-linter@v4
You can’t perform that action at this time.
0 commit comments