We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dad0f75 commit a4032fbCopy full SHA for a4032fb
.github/workflows/build.yaml
@@ -8,9 +8,9 @@ jobs:
8
matrix:
9
python-version: ["3.7", "3.9", "3.11"]
10
steps:
11
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
12
- name: Set up Python ${{ matrix.python-version }}
13
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
14
with:
15
python-version: ${{ matrix.python-version }}
16
- name: Install dependencies
@@ -24,8 +24,9 @@ jobs:
24
pipenv install -e .
25
- name: Test with pytest
26
run: |
27
+ pipenv shell
28
pipenv install pytest
- pipenv run pytest
29
+ pipenv run python -m pytest
30
deliver:
31
needs: [build]
32
runs-on: ubuntu-latest
0 commit comments