Skip to content

Updated RcppEigen version, fixed lambda #56

Updated RcppEigen version, fixed lambda

Updated RcppEigen version, fixed lambda #56

Workflow file for this run

name: Autoreconf Dist
on:
push:
branches: [ dev ]
jobs:
autoreconf:
runs-on: ubuntu-latest
steps:
- name: Checkout Dev Branch
uses: actions/checkout@v2
with:
ref: 'dev'
- name: Set up Autotools
run: command -v autoconf || (sudo apt-get update && sudo apt-get install -y autoconf)
- name: Run autoreconf
run: |
autoreconf -fiv
- name: Push to Main Branch
run: |
git config --global user.name 'GitHub Action'
git config --global user.email '[email protected]'
git add configure
git commit -m "Auto-update Autotools files" || echo "No changes to commit"
git push origin HEAD:main -f