Get Linux compilation working on GitHub Actions

This commit is contained in:
Brandon Rhodes 2022-01-24 11:37:18 -05:00
parent 06729a304a
commit 1312f91f9e
1 changed files with 20 additions and 0 deletions

20
.github/workflows/ci.yml vendored Executable file
View File

@ -0,0 +1,20 @@
name: ci
on:
push:
branches:
- macos-ci
pull_request:
branches:
- master
jobs:
compile-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Ubuntu packages
run: grep 'sudo apt install' INSTALL | sed 's/\$//' | sh
- name: Compile
run: make -C GUI/xephem