38 lines
1023 B
YAML
38 lines
1023 B
YAML
name: Map Prototype Checker
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
paths:
|
|
# Entity pathspecs - If any of these change (i.e. suffix changes etc), this check should run.
|
|
- "Resources/Prototypes/Entities/**/*.yml"
|
|
- "Resources/Prototypes/_NF/Entities/**/*.yml"
|
|
- "Resources/Prototypes/Nyanotrasen/Entities/**/*.yml"
|
|
- "Resources/Prototypes/_DV/Entities/**/*.yml"
|
|
# Map pathspecs - If any maps are changed, this should run.
|
|
- "Resources/Maps/**/*.yml"
|
|
# Also the mapchecker itself
|
|
- ".github/mapchecker/**"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: "3.10"
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r .github/mapchecker/requirements.txt
|
|
- name: Run mapchecker
|
|
run: |
|
|
python3 .github/mapchecker/mapchecker.py
|