Skip to content

Merge pull request #34 from tritonuas/chore/clang-tidy-linter #31

Merge pull request #34 from tritonuas/chore/clang-tidy-linter

Merge pull request #34 from tritonuas/chore/clang-tidy-linter #31

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: C++ Tests
runs-on: ubuntu-latest
steps:
- name: Install CMake
run: sudo apt install cmake
- name: Checkout Repo
uses: actions/checkout@v2
with:
submodules: true
token: ${{ secrets.SSH_TOKEN }}
- name: Create build dir
run: mkdir build
- name: Set up Cmake
run: cd build && cmake ..
- name: Run tests
run: cd build && make test