Add the double boundary case for QDFP and QD+ American Engine and analytical greeks for both #4658
Workflow file for this run
This file contains hidden or 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: | |
| branches: | |
| - '**' | |
| pull_request: | |
| jobs: | |
| headers: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - 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/ccache-action@v1.2 | |
| 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 |