starfighter/.github/workflows/main.yml

24 lines
472 B
YAML

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 and locale
run: ./autogen.sh
- name: configure
run: ./configure
- name: build
run: make