Enable build tests for debug and release on Linux and Mac

This commit is contained in:
Max Golovanov 2019-10-09 15:13:35 -07:00
Родитель 0f21492027
Коммит 99398e8ad3
1 изменённых файлов: 3 добавлений и 2 удалений

5
.github/workflows/build-posix-latest.yml поставляемый
Просмотреть файл

@ -18,12 +18,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
config: [release, debug]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: build
- name: Test ${{ matrix.os }} ${{ matrix.config }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_PULL_TOKEN: ${{ secrets.GIT_PULL_TOKEN }}
run: ./build.sh
run: ./build-tests.sh ${{ matrix.config }}