Replace Travis CI with GitHub Actions (#1688)

pull/1735/head
David Leal 2020-12-16 22:06:38 -06:00 committed by GitHub
parent e2c0f23ce1
commit cef2f6bb77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
.github/workflows/build.yml vendored Normal file
View File

@ -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 ..