Skip to content

Bump actions/checkout from 5 to 6 #71

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #71

Workflow file for this run

name: PyTest
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: pytest