Skip to content

🔧 fix: Replace std.debug.print with logger module in mini EVM #3020

🔧 fix: Replace std.debug.print with logger module in mini EVM

🔧 fix: Replace std.debug.print with logger module in mini EVM #3020

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Zig 0.15.1
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.15.1
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: zig build
- name: Test
run: zig build test
# Mini has pre-existing test failures (452/513 pass) - enable once fixed
# - name: Test Mini
# run: zig build test-mini