Files
mudserver/.gitea/workflows/smoke-tests.yml
AI Agent a2ffee0f94
Some checks failed
Smoke tests / Build and smoke test (push) Failing after 34s
Update documentation and CI to include world validation checks
- Added a note in AGENTS.md about using `mudtool validate -w ./world` for schema validation before committing.
- Updated TESTING.md to include a checklist item for the new validation command.
- Modified smoke-tests.yml to run the world validation command as part of the CI workflow.
2026-03-14 18:22:34 -06:00

27 lines
499 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: Validate world data
run: ./target/debug/mudtool validate -w ./world
- name: Run smoke tests
run: ./run-tests.sh