Improve and fix the descriptions of all UEF drones #111
Workflow file for this run
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: [push] | |
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" | |
tests: | |
name: Utility tests | |
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 | |
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" |