Don't require helpers when passing fixed parameters to fitted curve #3524
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compile single headers | |
on: [push, pull_request] | |
jobs: | |
headers: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
run: | | |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list | |
sudo apt update | |
sudo apt install -y libboost-dev ccache | |
- name: Cache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: single-headers-${{ github.ref }} | |
restore-keys: | | |
single-headers-${{ github.ref }} | |
single-headers-refs/heads/master | |
single-headers- | |
- name: Check | |
env: | |
CXX: ccache g++ | |
run: | | |
./tools/check_all_headers.sh |