20 lines
284 B
YAML
20 lines
284 B
YAML
name: Engine Tests
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
engine-tests:
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run Engine tests
|
|
run: |
|
|
cd engine
|
|
pwd
|
|
cargo test --verbose
|