senju/.github/workflows/tests.yml
Christoph J. Scherr e6547e1b1d
Merge pull request #6 from senju1337/dependabot/github_actions/actions/checkout-4
chore(deps): bump actions/checkout from 3 to 4
2025-02-26 23:07:29 +01:00

32 lines
655 B
YAML

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