Skip to content

Update main.c

Update main.c #263

Workflow file for this run

name: Run Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
TZ: Pacific/Auckland
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y \
libcunit1 \
libcunit1-doc \
libcunit1-dev \
flex \
libfl-dev \
bison
- name: make all
run: make all
- name: run unit tests
run: ./build/tests/run_unit_tests