Skip to content

polish: rewrite stiff public-facing copy in a warmer voice #27

polish: rewrite stiff public-facing copy in a warmer voice

polish: rewrite stiff public-facing copy in a warmer voice #27

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
markdownlint:
name: Markdown Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Lint Markdown files
uses: DavidAnson/markdownlint-cli2-action@v17
with:
globs: |
**/*.md
py-compile:
name: Python Compile Check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Compile Python sources
shell: bash
run: |
mapfile -t py_files < <(git ls-files '*.py')
if [ "${#py_files[@]}" -eq 0 ]; then
echo "No Python files to compile."
exit 0
fi
python -m py_compile "${py_files[@]}"