Skip to content

add TaskQueue implement of multi-thread version #17

add TaskQueue implement of multi-thread version

add TaskQueue implement of multi-thread version #17

Workflow file for this run

name: C++ CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential cmake
- name: Install Valgrind
run: sudo apt-get install -y valgrind
- name: Build
run: cd ./c++/gtest_mini_project && cmake . && make
- name: Test
run: cd ./c++/gtest_mini_project && ./tests/test_demo
- name: Run Valgrind Memory Leak Test
run: cd ./c++/gtest_mini_project && valgrind --leak-check=full --show-leak-kinds=all ./tests/test_demo