Skip to content

Allow manual trigger for GitHub Actions #15

Allow manual trigger for GitHub Actions

Allow manual trigger for GitHub Actions #15

Workflow file for this run

name: Test suite
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install pipenv
run: pip install pipenv
- name: Run tests
run: |
pipenv sync --dev
pipenv run pytest -vv