This repository was archived by the owner on Jul 18, 2026. It is now read-only.
fix(zig): restore Zig 0.16.0 compatibility (std.time.Instant → std.Io.Timestamp) #195
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: clang-format | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| - "master" | |
| pull_request: | |
| branches: | |
| - "main" | |
| - "master" | |
| jobs: | |
| clang-format: | |
| name: Check code formatting using clang-format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Check clang-format | |
| uses: DoozyX/clang-format-lint-action@v0.20 | |
| with: | |
| source: "." | |
| extensions: "c,h" | |
| clangFormatVersion: 17 | |
| style: Google |