Added [] overload and namespace to dc's data structures
dc / build (push) Successful in 13s Details

This commit is contained in:
Marco Cetica 2024-03-12 15:35:20 +01:00
parent 3c257a1fd1
commit de558064c8
Signed by: marco
GPG Key ID: 45060A949E90D0FD
2 changed files with 4 additions and 4 deletions

View File

@ -12,8 +12,8 @@ jobs:
uses: actions/checkout@main
- name: Build dc
run: |
apt -y update && apt -y install cmake build-essential
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug .
apt -y update && 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: |

View File

@ -12,8 +12,8 @@ jobs:
uses: actions/checkout@main
- name: Build dc
run: |
apt -y update && apt -y install cmake build-essential
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug .
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: |