8000 Add template for WinterTC · speced/bikeshed-boilerplate@347bb6a · GitHub
[go: up one dir, main page]

Skip to content

Add template for WinterTC #8

Add template for WinterTC

Add template for WinterTC #8

Workflow file for this run

name: Lint doctypes.kdl
on:
push:
paths:
- "boilerplate/doctypes.kdl"
pull_request:
paths:
- "boilerplate/doctypes.kdl"
workflow_dispatch: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install kdl
run: pip install kdl-py==1.2.0
- name: Verify failing tests and orphaned tests
run: |
python .github/workflows/lint/lint-doctypes.py
0