Files
datum/.gitea/workflows/gcc-build.yml
Marco Cetica 4a203b8ba7
Some checks failed
clang-build / clang-build (push) Failing after 3s
gcc-build / gcc-build (push) Failing after 3s
Migrating to Gitea CI
2026-01-16 09:37:47 +01:00

21 lines
407 B
YAML

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 && ./test_string
- name: Run benchmarks
run: |
./benchmark_datum