Skip to content

Added [] overload and namespace to dc's data structures #27

Added [] overload and namespace to dc's data structures

Added [] overload and namespace to dc's data structures #27

Workflow file for this run

name: dc
on:
push:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@main
- name: Build dc
run: |
sudo apt -y update && sudo apt -y install cmake ninja-build build-essential
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release .
cmake --build build
- name: Run unit tests
run: |
./utest.sh tests