Skip to content

Commit e0e61bb

Browse files
authored
Merge pull request #1 from allyourcodebase/idiomize
Idiomize
2 parents 1379d45 + e99d815 commit e0e61bb

31 files changed

Lines changed: 4494 additions & 622 deletions

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
build:
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
os: [ubuntu-latest, macos-latest, windows-latest]
15+
runs-on: ${{ matrix.os }}
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: mlugg/setup-zig@v2
19+
with:
20+
version: 0.15.2
21+
- run: zig build
22+
- run: zig build test

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
zig-cache/
1+
.zig-cache/
22
zig-out/

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)