Skip to content

fix(workflows): enhance Docker Buildx setup and streamline artifact e… #38

fix(workflows): enhance Docker Buildx setup and streamline artifact e…

fix(workflows): enhance Docker Buildx setup and streamline artifact e… #38

Workflow file for this run

name: Run Tests
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --with dev
- name: Run tests
run: poetry run pytest