Skip to content

add test ci

add test ci #2

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Run tests
run: |
pip3 install pytest
pytest .