Merge pull request #6 from igilham/ci

build: add basic ci workflow
This commit is contained in:
Layla Marchant 2020-03-06 12:13:58 -05:00 committed by GitHub
commit 4c2b40a570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Continuous Integration
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install
run: sudo apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev libpango1.0-dev
- name: autoconf
run: autoreconf -vif
- name: build locale
run: cd locale && ./build.py && cd ..
- name: configure
run: ./configure
- name: build
run: make