Skip to content

✨ init bs.gui

✨ init bs.gui #156

Workflow file for this run

name: 🔍 Pull Request Checks
on:
pull_request:
paths:
- "datapacks/**"
types:
[
opened,
synchronize,
reopened,
labeled,
unlabeled
]
env:
GITHUB_EVENT: ${{ toJSON(github.event) }}
jobs:
review-metadata:
name: 🔍 Metadata Review
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: pip install -e ./scripts
- name: Check function headers
run: python scripts/workflows/check_function_headers.py
- name: Check feature tag
run: python scripts/workflows/check_feature_tag.py
- name: Check module metadata file
run: python scripts/workflows/check_module_metadata_file.py
- name: Check generated metadata
run: python scripts/workflows/check_generated_metadata.py