Skip to content

Develop

Develop #14

Workflow file for this run

# This workflow will install Poetry, install Python dependencies, run tests a single version of Python
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
services:
docker:
image: docker:26.1.3
options: --privileged
ports:
- 2375:2375
env:
DOCKER_TLS_CERTDIR: ""
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.11
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "export PATH=\"$HOME/.local/bin:$PATH\"" >> $GITHUB_ENV
- name: Install dependencies
run: |
poetry install
- name: Run tests
env:
DOCKER_HOST: tcp://localhost:2375
run: |
poetry run pytest