Skip to content

ci: fix workflow name #3

ci: fix workflow name

ci: fix workflow name #3

Workflow file for this run

name: Pytest
on: [ push, pull_request ]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: python -m pip install pytest .
- name: Run tests
run: pytest