Skip to content

Bump pytest from 7.4.1 to 7.4.2 #137

Bump pytest from 7.4.1 to 7.4.2

Bump pytest from 7.4.1 to 7.4.2 #137

Workflow file for this run

name: Python test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install poetry dependencies
run: |
export PATH="$PATH:$HOME/.local/bin"
poetry install --with=dev
- name: Run pre-commit
run: |
export PATH="$PATH:$HOME/.local/bin"
source `poetry env info --path`/bin/activate
pre-commit run --all-files
- name: Run test
run: |
export PATH="$PATH:$HOME/.local/bin"
source `poetry env info --path`/bin/activate
poetry run pytest