Files
Knightly/.github/workflows/engine_test.yml
htom 7625eecbd9 Workflow: Dispatch and Test runner workflow test #1
Testing the dispatcher and engine_test workflow for any bugs, the
changes on these files always need to be uploaded to github to test if
it is working correctly
2025-11-05 13:26:23 +01:00

23 lines
358 B
YAML

name: Engine Tests
on:
workflow_dispatch:
jobs:
engine-tests:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up Rust
uses: actions/setup-rust@v1
with:
rust-version: stable
- name: Run Engine tests
run: |
cd engine
ls
cargo test --verbose