Workflow: Added the workflow files, changed ls to pwd in tests

This commit is contained in:
2025-11-05 14:47:50 +01:00
parent 300b3cde34
commit 3df33093ed
3 changed files with 45 additions and 1 deletions

22
.github/workflows/server_test.yml vendored Normal file
View 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