Skip to content

Apply Python Project Template #62

Apply Python Project Template

Apply Python Project Template #62

Workflow file for this run

name: Run unit tests
on:
pull_request:
push:
workflow_dispatch:
# schedule:
# # Run every Sunday at 03:53 UTC
# - cron: 53 3 * * 0
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Run Tox
run: pipx run tox -e py38 -v