update to zig 0.14.1 #11
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
| # SPDX-FileCopyrightText: © 2025 Mark Delk <[email protected]> | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: ci | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: license check | |
| uses: fsfe/reuse-action@v4 | |
| - name: setup zig | |
| uses: mlugg/setup-zig@v1 | |
| with: | |
| version: 0.13.0 | |
| - name: zig build | |
| run: zig build --summary all | |
| - name: mruby version | |
| run: zig build mruby -- -v | |
| - name: mruby tests | |
| run: zig build mrbtest -- -v | |
| - name: zig example | |
| run: zig build example-zig |