Skip to content

feat: companion Docker/Podman image, auto-built and published on rele… #46

feat: companion Docker/Podman image, auto-built and published on rele…

feat: companion Docker/Podman image, auto-built and published on rele… #46

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.12"]
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 the skill + test dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements-test.txt
- name: Run tests
run: pytest tests/ -v