Skip to content

Push on changes to *.cpp and *.cc #4

Push on changes to *.cpp and *.cc

Push on changes to *.cpp and *.cc #4

Workflow file for this run

name: ci
env:
CTEST_NO_TESTS_ACTION: error
HOMEBREW_NO_INSTALL_CLEANUP: 1
on:
push:
paths:
- "**.c"
- "**.cc"
- "**.cpp"
- "**.h"
- "**/CMakeLists.txt"
- "**.cmake"
- ".github/workflows/ci.yml"
jobs:
core:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Configure
uses: threeal/[email protected]
with:
generator: Ninja
c-compiler: clang
cxx-compiler: clang++
- name: Build
run: cmake --build build
- name: Unit Tests
run: build/iggy_cpp_test