Files
datum/.gitea/workflows/clang-build.yml
Workflow config file is invalid. Please check your config file: yaml: line 9: could not find expected ':'
2026-01-16 09:57:40 +01:00

27 lines
606 B
YAML

name: clang-build
on: [push,pull_request,workflow_dispatch]
jobs:
clang-build:
runs-on: ubuntu-latest
steps:
- run: |
sudo apt update
sudo apt install -y git ca-certificates curl nodejs
- uses: actions/checkout@v4
- name: Install Clang
run: sudo apt update && sudo apt install -y clang
- name: Build Datum
run: |
make clean all CC=clang
- name: Run unit tests
run: |
./test_vector && ./test_map && ./test_bigint && ./test_string
- name: Run benchmarks
run: |
./benchmark_datum