Skip to content

enhancement: Reduce reliance on docs by expanding kwargs into parameters #40

enhancement: Reduce reliance on docs by expanding kwargs into parameters

enhancement: Reduce reliance on docs by expanding kwargs into parameters #40

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: "pip"
cache-dependency-path: pyproject.toml
- uses: actions/cache@v3
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-test
- name: Install build dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pip install ".[test]"
- name: Run tests
run: pytest