Files
jojo/.gitea/workflows/build.yaml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 8: cannot unmarshal !!str `cargo b...` into model.Step line 12: cannot unmarshal !!str `cargo b...` into model.Step
2025-07-14 10:52:44 +08:00

13 lines
201 B
YAML

---
name: Build
on: [push]
jobs:
build-server:
runs-on: ubuntu-latest
steps:
- cargo build -p server
build-client:
runs-on: ubuntu-latest
steps:
- cargo build -p client