File tree Expand file tree Collapse file tree 4 files changed +1635
-1571
lines changed
Expand file tree Collapse file tree 4 files changed +1635
-1571
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,27 @@ jobs:
1515 build:
1616 runs-on: ubuntu-latest
1717 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
2121 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"
2339 - name: Install dependencies
2440 run: |
2541 python -m pip install -U pip poetry
You can’t perform that action at this time.
0 commit comments