Files
mudserver/.gitea/workflows/smoke-tests.yml
AI Agent 93862c3c34
Some checks failed
Smoke tests / Build and smoke test (push) Failing after 16s
Add world validation command to mudtool
- Introduced a new command `validate` to check the integrity of world data, ensuring all referenced entities (NPCs, objects, guilds, races, classes, spells) exist and have valid attributes.
- Updated help message to include usage of the new command and its options.
- Added support for specifying a world directory via command line argument.
2026-03-14 18:18:58 -06:00

24 lines
408 B
YAML

name: Smoke tests
on:
workflow_dispatch:
push:
jobs:
smoke:
name: Build and smoke test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Rust
run: |
sudo apt update
sudo apt install -y cargo
- name: Build
run: cargo build
- name: Run smoke tests
run: ./run-tests.sh