Bump pytest from 8.3.3 to 8.3.4 #218
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: push | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.10.13 | |
- name: Install Python Poetry | |
uses: abatilo/[email protected] | |
- name: Configure poetry | |
shell: bash | |
run: python -m poetry config virtualenvs.in-project true | |
- name: View poetry version | |
run: poetry --version | |
- name: Install dependencies | |
run: python -m poetry install | |
- name: Unit tests | |
env: | |
FINARY_EMAIL: ${{ secrets.FINARY_EMAIL }} | |
FINARY_PASSWORD: ${{ secrets.FINARY_PASSWORD }} | |
run: python -m poetry run pytest |