Skip to content

Cleanup

Cleanup #138

Workflow file for this run

name: C Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install check
- name: make
run: make
- name: make test
run: make test
- name: run tests
run: ./run_erbx_tests
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install clang-format
run: sudo apt-get install -y clang-format-19
- name: clang-format version
run: clang-format-19 --version
- name: Lint
run: bin/lint