Skip to content

test(obj): add match_object unit tests #17

test(obj): add match_object unit tests

test(obj): add match_object unit tests #17

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- master
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v3
# Install necessary tools
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential libcunit1 libcunit1-dev
# Build and run tests
- name: Build and run unit tests
run: |
make test-run
# Clean up
- name: Clean up
run: |
make clean