Add GitHub Actions for regression testing

This commit is contained in:
ISSOtm
2020-01-30 18:29:47 +01:00
parent 3fce9ed9a4
commit 97bcbf5d84
2 changed files with 40 additions and 0 deletions

14
.github/actions/install_deps.sh vendored Executable file
View File

@@ -0,0 +1,14 @@
case `echo $1 | cut -d '-' -f 1` in
ubuntu)
sudo apt-get -qq update
sudo apt-get install -yq bison libpng-dev pkg-config
;;
macos)
brew install libpng pkg-config md5sha1sum
;;
*)
echo "WARNING: Cannot install deps for OS '$1'"
;;
esac
yacc --version