Skip to content

INSTALL necessary for ESP32 chips. #7

INSTALL necessary for ESP32 chips.

INSTALL necessary for ESP32 chips. #7

# This starter workflow is for a CMake project running on a single platform. There is a different starter workflow if you need cross-platform coverage.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml
name: CMake on a single platform
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cmake
working-directory: ${{github.workspace}}
run: cmake .
- name: Make
working-directory: ${{github.workspace}}
run: make
- name: CTest
working-directory: ${{github.workspace}}/test
run: ctest