Skip to content

added init_LIB_file and get_absolute_path functions #7

added init_LIB_file and get_absolute_path functions

added init_LIB_file and get_absolute_path functions #7

Workflow file for this run

name: clang-tidy
on:
push:
branches: [ "main" ]
paths:
- src/**
- .github/workflows/clang-tidy.yml
- CMakeLists.txt
pull_request:
branches: [ "main" ]
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_BUILD_TYPE=Debug -S . -B build
- name: Build
working-directory: ${{github.workspace}}/build
run: cmake --build .