Skip to content

More action testing #32

More action testing

More action testing #32

Workflow file for this run

name: macos-build
on:
pull_request:
branches:
- main
paths:
- '*/*.c'
- '*/*.h'
- '*.cmake'
- '*/*.cmake'
- 'CMakeLists.txt'
- '*/CMakeLists.txt'
- 'Config.cmake.in'
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
- name: Delete non-library files
run: |
rm -rf samples/
rm -rf tests/
- name: Build with Ninja and Clang
run: |
make clean
make clang-deb
make install