Skip to content

Commit

Permalink
Bumped test python version.
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Kirilin <[email protected]>
  • Loading branch information
s3rius committed Jun 30, 2024
1 parent 69a6a6f commit 67293d7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ jobs:
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.11'
- name: Install deps
run: |
pip install -U pip
pip install poetry==1.4.2
pip install poetry==1.8.2
poetry install
env:
POETRY_VIRTUALENVS_CREATE: false
POETRY_VIRTUALENVS_CREATE: "False"
- name: Setup GIT
run: |
git config --global user.name "fastapi_template"
git config --global user.email "[email protected]"
- name: Run tests
run: poetry run pytest -vv
run: pytest -vv

0 comments on commit 67293d7

Please sign in to comment.