From cef2f6bb770602302b8a7e4810a9c8942debc4d4 Mon Sep 17 00:00:00 2001 From: David Leal Date: Wed, 16 Dec 2020 22:06:38 -0600 Subject: [PATCH] Replace Travis CI with GitHub Actions (#1688) --- .github/workflows/build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..87a8648 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: build +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + + - name: Install Hunspell + run: | + sudo apt-get update + sudo apt-get install hunspell + + - name: Run cd scripts; make -k + run: cd scripts; make -k + + - name: Run cd .. + run: cd ..