Skip to content

CI: Test project

CI: Test project #13

Workflow file for this run

name: Test and build
on: [push, pull_request, workflow_call]
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gaurav-nelson/github-action-markdown-link-check@v1
name: Check links in markdown files
with:
use-quiet-mode: "yes"
use-verbose-mode: "yes"
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.2.2
- name: Install cookiecutter
run: pip install cookiecutter
- name: Create project from template
run: yes "" | cookiecutter .
- name: Install project dependencies
run: poetry install
- name: Run tests
run: poetry run pytest