Skip to content

feat(foundry): extract_code_blocks bin/ script + bin-authoring-guide … #41

feat(foundry): extract_code_blocks bin/ script + bin-authoring-guide …

feat(foundry): extract_code_blocks bin/ script + bin-authoring-guide … #41

Workflow file for this run

name: CI executables
on:
push:
branches: [main]
pull_request:
paths:
- "plugins/**"
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pytest
run: pip install -q pytest
- name: Run plugin's bin tests
working-directory: plugins/
run: pytest -v --color=yes