Skip to content

Added extra substitutions config #6

Added extra substitutions config

Added extra substitutions config #6

Workflow file for this run

name: Automatic Test
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip3 install poetry
poetry install
- name: Run tests
run: poetry run pytest