Workflow: Added the workflow files, changed ls to pwd in tests
This commit is contained in:
2
.github/workflows/engine_test.yml
vendored
2
.github/workflows/engine_test.yml
vendored
@@ -18,5 +18,5 @@ jobs:
|
||||
- name: Run Engine tests
|
||||
run: |
|
||||
cd engine
|
||||
ls
|
||||
pwd
|
||||
cargo test --verbose
|
||||
|
||||
22
.github/workflows/server_test.yml
vendored
Normal file
22
.github/workflows/server_test.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Server Tests
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
server-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 Server tests
|
||||
run: |
|
||||
cd server
|
||||
pwd
|
||||
cargo test --verbose
|
||||
22
.github/workflows/ui_test.yml
vendored
Normal file
22
.github/workflows/ui_test.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: UI Tests
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
ui-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 UI tests
|
||||
run: |
|
||||
cd ui
|
||||
pwd
|
||||
cargo test --verbose
|
||||
Reference in New Issue
Block a user