further simplifications #193
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Zimtohrli | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: '! github.event.pull_request.draft' | |
steps: | |
- name: Install dependencies | |
run: sudo apt install -y libogg-dev libvorbis-dev libflac-dev cmake ninja-build libasound2-dev libglfw3-dev libopus-dev | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Configure | |
run: ./configure.sh | |
- name: Build | |
run: (cd build && env ninja) | |
- name: Test | |
run: (cd build && env ctest --output-on-failure) |