Dropbear 2024.86 #300
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
# Checks that autoconf has been run if configure.ac was updated | |
# Assumes that autoconf 2.71 was run, the same as ubuntu 22.04 | |
name: Autoconf Up To Date | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
autoconf: | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- name: deps | |
run: | | |
sudo apt-get -y update | |
sudo apt-get -y install autoconf | |
- uses: actions/checkout@v4 | |
- name: run autoconf | |
run: autoconf && autoheader | |
- name: check no difference | |
run: git diff --exit-code |