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
This commit is contained in:
22
.github/workflows/engine_test.yml
vendored
Normal file
22
.github/workflows/engine_test.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
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
|
||||
Reference in New Issue
Block a user