Skip to content

Add glmGamPoi Liang-Zeger cluster-robust standard errors #137

Add glmGamPoi Liang-Zeger cluster-robust standard errors

Add glmGamPoi Liang-Zeger cluster-robust standard errors #137

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: sudo apt-get update && sudo apt-get install -y autoconf automake libtool sed wget r-base
- name: Run autoreconf
run: |
autoreconf -fiv
./configure
make dist
- name: Extract dist files
run: |
tar -zxvf benj-*.tar.gz
cp -r benj-*/* .
- name: Push to Main Branch
run: |
git config --global user.name 'GitHub Action'
git config --global user.email 'action@github.com'
git add config.guess config.sub configure configure.ac Makefile.in Makefile.am install-sh aclocal.m4 missing DESCRIPTION
git commit -m "Auto-update Autotools files" || echo "No changes to commit"
git push origin HEAD:main -f