fix past-end iterator dereference, clean up (#1806) #562
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: Update generated headers | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
filelists: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
run: | | |
sudo apt update | |
sudo apt install -y libboost-dev | |
- name: Configure | |
run: | | |
./autogen.sh | |
./configure | |
- name: Update headers | |
run: | | |
find ql -name *.am | xargs touch | |
make dist | |
rm QuantLib-*.tar.gz | |
- uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: update-generated-headers-${{ github.ref_name }} | |
delete-branch: true | |
commit-message: 'Update generated headers' | |
title: 'Update generated headers' | |
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> |