Fix: [Format][help] 修复特定情况下没能输出枚举类型值的问题 #27
Workflow file for this run
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
| name: Build examples and test all | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| push: | |
| branches: | |
| - ci-test/* | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-test: | |
| # runs-on: self-hosted | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Zig | |
| uses: mlugg/setup-zig@v1 | |
| with: | |
| version: 0.14.0 | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build examples | |
| run: zig build examples | |
| - name: Test | |
| run: zig build test |