Skip to content

Bump docker/login-action from 3 to 4 #71

Bump docker/login-action from 3 to 4

Bump docker/login-action from 3 to 4 #71

Workflow file for this run

name: PyTest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install python
uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests with pytest
run: pytest --verbose