-
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (24 loc) · 633 Bytes
/
ci.yml
File metadata and controls
33 lines (24 loc) · 633 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# SPDX-FileCopyrightText: © 2025 Mark Delk <jethrodaniel@gmail.com>
#
# SPDX-License-Identifier: MIT
name: ci
on: [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@v2
with:
version: 0.14.1
- 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