Skip to content

Commit

Permalink
implement non-arena memory management (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnemnion authored Aug 31, 2024
1 parent ef45c00 commit 7cf1ba9
Show file tree
Hide file tree
Showing 5 changed files with 1,667 additions and 858 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

jobs:
build:
strategy:
fail-fast: false
matrix:
zig-version: [master]
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- zig-version: "0.12.1"
os: ubuntu-latest
- zig-version: "0.13.0"
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Zig
uses: mlugg/setup-zig@v1
with:
version: ${{ matrix.zig-version }}

- name: Check Formatting
run: zig fmt --ast-check --check src

- name: Run Tests
run: zig build test --summary all
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.zig-cache
zig-cache
zig-out
Loading

0 comments on commit 7cf1ba9

Please sign in to comment.