Skip to content

[Feature] Add more delimiters for noisy C implementation: period, ell… #3

[Feature] Add more delimiters for noisy C implementation: period, ell…

[Feature] Add more delimiters for noisy C implementation: period, ell… #3

Workflow file for this run

name: Test for C++ implementations
on:
push:
branches: [main]
jobs:
prepare:
name: Prepare test
runs-on: ubuntu-22.04
defaults:
run:
working-directory: ./test
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build test maker
run: gcc -o test_maker test_maker.c
test-hd:
name: Run heading test
runs-on: ubuntu-22.04
needs: prepare
defaults:
run:
working-directory: ./test
steps:
- name: Build object program
run: make all
working-directory: ./hd/cpp
- name: Build host program
run: ./test_maker .test/hd.test
- name: Run test
run: ./test ../hd/cpp/hd
timeout-minutes: 5