Skip to content

update changelog and architecture docs for ABEL + CI #8

update changelog and architecture docs for ABEL + CI

update changelog and architecture docs for ABEL + CI #8

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: make
- name: Test
run: make test
build-windows:
runs-on: windows-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Build
run: make
- name: Test
run: make test
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: make
- name: Test
run: make test