Skip to content

docs: align world direction to square MUD #71

docs: align world direction to square MUD

docs: align world direction to square MUD #71

Workflow file for this run

# 與本機 `make verify` 對齊:clippy + test + checkrooms
name: verify
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
targets: wasm32-unknown-unknown
- name: Rust version
run: rustc --version && cargo --version
- name: make verify
run: make verify 2>&1 | tee /tmp/verify.log
- name: Upload log on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: verify-log
path: /tmp/verify.log