Skip to content

Integrate sh_arena + sh_log, eliminate magic constants #15

Integrate sh_arena + sh_log, eliminate magic constants

Integrate sh_arena + sh_log, eliminate magic constants #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
strategy:
matrix:
include:
- os: ubuntu-latest
cc: gcc
- os: ubuntu-latest
cc: clang
- os: macos-latest
cc: clang
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build
run: make bitnet
env:
CC: ${{ matrix.cc }}
- name: Test
run: make test
env:
CC: ${{ matrix.cc }}