feat(test_framework): add an in-game lua testing framework #1
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: Run Tests | |
on: | |
# push: | |
# branches-ignore: | |
# - master | |
jobs: | |
upload-event_file: | |
name: Upload Event File | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload Event File | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Event File | |
path: ${{ github.event_path }} | |
run-tests: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Run Tests | |
run: docker-compose -f tools/headless_testing/docker-compose.yml up | |
- name: Upload Test Results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Test Results | |
path: | | |
tools/headless_testing/testlog/results.json |