senju/.github/workflows/tests.yml
2025-02-08 17:48:14 +01:00

29 lines
608 B
YAML

name: Tests
on:
pull_request:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install -e .
- name: Run tests
run: |
pytest