# HG changeset patch # User Matt Johnston # Date 1643701861 -28800 # Node ID 66a3fabe48705634148f9f96cea7c4dc05d12809 # Parent adfcdfb161a4831f2797c75049d192afd4054f81# Parent 7a6c64c4f0ac0e69fae5f1bd06d247844c7c76d7 merge diff -r adfcdfb161a4 -r 66a3fabe4870 .github/workflows/autoconf.yml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.github/workflows/autoconf.yml Tue Feb 01 15:51:01 2022 +0800 @@ -0,0 +1,25 @@ +# Checks that autoconf has been run if configure.ac was updated +# Assumes that autoconf 2.69 was run, the same as ubuntu 20.04 +name: Autoconf Up To Date +on: + pull_request: + push: + branches: + - master +jobs: + autoconf: + runs-on: 'ubuntu-20.04' + + steps: + - name: deps + run: | + sudo apt-get -y update + sudo apt-get -y install autoconf + + - uses: actions/checkout@v2 + + - name: run autoconf + run: autoconf && autoheader + + - name: check no difference + run: git diff --exit-code