docs: align world direction to square MUD #71
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 與本機 `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 |