Skip to content

Remove forced inlining for ffc_digit_comp #92

Remove forced inlining for ffc_digit_comp

Remove forced inlining for ffc_digit_comp #92

Workflow file for this run

name: Simple Test
on:
push:
branches: [main, master]
pull_request:
jobs:
make-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y clang gcc make python3
- name: make test
run: make test
- name: Supplemental tests
run: |
make fetch-supplemental-data
make supplemental_tests
- name: make example
run: make example
- name: Check dirty single-header
run: git diff --exit-code ffc.h
cmake-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y clang gcc make python3 cmake
- name: cmake configure
run: cmake -B build
- name: cmake build
run: cmake --build build -j 2
- name: cmake test
run: ctest --test-dir build -j 2