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

16
.github/workflows/gcc-build.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
name: gcc-build
on: [push,pull_request,workflow_dispatch]
jobs:
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_bigint