Skip to content

Add initial implementation of the mkdocs-color-swatch-plugin #2

Add initial implementation of the mkdocs-color-swatch-plugin

Add initial implementation of the mkdocs-color-swatch-plugin #2

Workflow file for this run

name: Test Python Package
on:
pull_request:
branches:
- main
workflow_call:
workflow_dispatch:
jobs:
test:
name: Run tests with pytest
runs-on: ubuntu-latest
container:
image: ${{ vars.PYTHON_IMAGE }}
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Poetry
run: pip install poetry==${{ vars.POETRY_VERSION }}
- name: Install dependencies
run: poetry install
- name: Run pytest
run: poetry run pytest