Skip to content

test(common): test create/free-json-value #12

test(common): test create/free-json-value

test(common): test create/free-json-value #12

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