Add test suite to CI

This commit is contained in:
Brandon Rhodes 2022-10-16 15:52:10 -04:00
parent ebd31ace6c
commit b6a51595b0
1 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,7 @@ on:
- master
jobs:
compile-linux:
compile-linux-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -18,6 +18,8 @@ jobs:
run: grep 'sudo apt install' INSTALL | sed 's/\$//' | sh
- name: Compile
run: make -C GUI/xephem
- name: Test
run: make -C tests
compile-macos:
runs-on: macos-latest