Skip to content

skipping pages if template or content is missing #3

skipping pages if template or content is missing

skipping pages if template or content is missing #3

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, synchronize, reopened]
workflow_call:
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Python Version
run: python --version
- name: Update Pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install Syrinx
run: pip install .
- name: Install test dependencies
run: pip install -r tests/requirements.txt
- name: Unit tests
run: pytest