Added unit tests for BigInt data type and updated docs

This commit is contained in:
2025-11-17 16:41:09 +01:00
parent f625862ad2
commit 9e419d09ac
11 changed files with 402 additions and 69 deletions

19
.github/workflows/clang-build.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: clang-build
on: [push,pull_request,workflow_dispatch]
jobs:
clang-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Clang
run: sudo apt update && sudo apt install -y clang
- name: Build Datum
run: |
make clean all
- name: Run unit tests
run: |
./test_vector && ./test_map && ./test_bigint

View File

@@ -1,17 +1,16 @@
name: datum
on:
push:
branch: [master]
workflow_dispatch:
name: gcc-build
on: [push,pull_request,workflow_dispatch]
jobs:
build:
gcc-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Datum
run: |
make clean all
- name: Run unit tests
run: |
./test_vector && ./test_map
./test_vector && ./test_map && ./test_bigint