Skip to content

update: fix tests

update: fix tests #6

Workflow file for this run

name: Build
on:
push:
jobs:
build-project:
name: Build Project
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
submodules: true
- name: Configure Project
uses: threeal/[email protected]
with:
c-compiler: gcc
cxx-compiler: g++
cxx-flags: "--std=c++17"
- name: Build Project
run: cmake --build build
- name: Run-Tests
run: ./build/testing/LinkedList_test