Some checks failed
Smoke tests / Build and smoke test (push) Failing after 16s
- 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.
24 lines
408 B
YAML
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
|