Skip to content

pytest testing for main of larsmaxfield/jsonschema-fill-default #41

pytest testing for main of larsmaxfield/jsonschema-fill-default

pytest testing for main of larsmaxfield/jsonschema-fill-default #41

Workflow file for this run

name: Tests
run-name: pytest testing for main of ${{ github.repository }}
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: |
pip install --upgrade pip
pip install poetry==1.8.5
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'poetry'
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest -vv