Move build range overlay creation to post-mod blueprint loading (#6220) #1338
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- deploy/fafdevelop | |
- deploy/faf | |
- deploy/fafbeta | |
- develop | |
- master | |
jobs: | |
syntax: | |
name: Syntax | |
runs-on: ubuntu-latest | |
container: faforever/lua:v5.0-1 | |
steps: | |
- name: Install tooling | |
run: apk add bash git findutils | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
*.sh | |
*.lua | |
*.bp | |
- name: Check Lua syntax | |
run: "bash ./tests/run-syntax-test.sh" | |
testUtils: | |
name: Utility tests | |
needs: [syntax] | |
runs-on: ubuntu-latest | |
container: faforever/lua:v5.0-1 | |
steps: | |
- name: Install tooling | |
run: apk add bash git findutils | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
*.sh | |
*.lua | |
*.bp | |
- name: Run Lua tests | |
run: "bash ./tests/run-utility-tests.sh" | |
testUnits: | |
name: Blueprint tests | |
needs: [syntax] | |
runs-on: ubuntu-latest | |
container: faforever/lua:v5.0-1 | |
steps: | |
- name: Install tooling | |
run: apk add bash git findutils | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
*.sh | |
*.lua | |
*.bp | |
- name: Run Lua tests | |
run: "bash ./tests/run-blueprint-tests.sh" |