Skip to content

ignore binary outputs #4

ignore binary outputs

ignore binary outputs #4

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install build tools
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake
- name: Build
run: make
- name: Build and run C tests
run: |
make ctest
if [ -x tests/ctest ]; then
./tests/ctest
else
echo "ctest binary missing"; exit 1
fi