Skip to content

build(deps-dev): bump pytest from 7.4.3 to 7.4.4 #248

build(deps-dev): bump pytest from 7.4.3 to 7.4.4

build(deps-dev): bump pytest from 7.4.3 to 7.4.4 #248

Workflow file for this run

name: Run Python Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: tests
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install Python
uses: actions/[email protected]
with:
python-version: 3.8
- name: Install Poetry
run: pip install poetry
- name: Set Poetry config
run: |
poetry config virtualenvs.in-project false
poetry config virtualenvs.path ~/.virtualenvs
- name: Install Dependencies
run: poetry install
if: steps.cache.outputs.cache-hit != 'true'
- name: Run tests
run: poetry run pytest