File tree 4 files changed +1635
-1571
lines changed
4 files changed +1635
-1571
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,27 @@ jobs:
15
15
build :
16
16
runs-on : ubuntu-latest
17
17
steps :
18
- - uses : actions/checkout@v3
19
- - name : Set up Python 3.8
20
- uses : actions/setup-python@v4
18
+ - uses : actions/checkout@v4
19
+ - name : Set up Python
20
+ uses : actions/setup-python@v5
21
21
with :
22
- python-version : 3.8
22
+ python-version : " 3.10"
23
+ - name : Install dependencies
24
+ run : |
25
+ python -m pip install -U pip poetry
26
+ python -m poetry install --with dev
27
+ - name : Test with pytest
28
+ run : |
29
+ python -m poetry run python -m pytest
30
+
31
+ test :
32
+ runs-on : ubuntu-latest
33
+ steps :
34
+ - uses : actions/checkout@v4
35
+ - name : Set up Python
36
+ uses : actions/setup-python@v5
37
+ with :
38
+ python-version : " 3.10"
23
39
- name : Install dependencies
24
40
run : |
25
41
python -m pip install -U pip poetry
You can’t perform that action at this time.
0 commit comments