Skip to content

build(deps): bump python from 3.15.0a5-slim to 3.15.0a8-slim #8

build(deps): bump python from 3.15.0a5-slim to 3.15.0a8-slim

build(deps): bump python from 3.15.0a5-slim to 3.15.0a8-slim #8

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.13', '3.14']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f pyproject.toml ]; then pip install .[dev] 2>/dev/null || pip install .; fi
if [ -f Pipfile ]; then pip install pipenv && pipenv install --dev; fi
pip install pytest 2>/dev/null || true
- run: python -m pytest tests/ -v || python -m pytest -v