Fix unbuilt units staying around when issued with BuildMobile to external factories and cancelled #3096
Workflow file for this run
This file contains hidden or 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" |