mirror of https://github.com/XEphem/XEphem.git
21 lines
342 B
YAML
Executable File
21 lines
342 B
YAML
Executable File
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
|