mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
30 lines
699 B
YAML
30 lines
699 B
YAML
name: Check BT Compiled JSON
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**/*.bt.json"
|
|
- "build/behavior_trees/**"
|
|
- "code/__DEFINES/**"
|
|
# BUBBER EDIT BEGIN
|
|
- "modular_bubber/**/*.bt.json"
|
|
- "modular_skyrat/**/*.bt.json"
|
|
- "modular_zubbers/**/*.bt.json"
|
|
# BUBBER EDIT END
|
|
- "tools/build_bt.py"
|
|
|
|
jobs:
|
|
check_bt_compiled:
|
|
name: Verify BT compiled JSON is up to date
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.x"
|
|
|
|
- name: Check compiled BT files are up to date
|
|
run: python tools/build_bt.py --check
|