mirror of
https://github.com/firebase/agent-skills.git
synced 2026-09-14 17:09:03 +08:00
538130c394
* Set up mdformat markdown formatter and GitHub Action * Address code review feedback on markdown formatter scripts
24 lines
445 B
YAML
24 lines
445 B
YAML
name: Format Check
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, next ]
|
|
pull_request:
|
|
branches: [ main, next ]
|
|
|
|
jobs:
|
|
format:
|
|
name: Markdown Format Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Run Format Check
|
|
run: bash scripts/format.sh --check
|