Change the way C compiler warnings are handled
[llpp.git] / .github / workflows / main.yml
blob50cef2f71b72f687d579568de0e84421bc9667d2
1 name: main
3 on: [push, pull_request]
5 jobs:
6   build:
7     strategy:
8       fail-fast: false
9       matrix:
10         os:
11           - macos-latest
12           - ubuntu-latest
14     runs-on: ${{ matrix.os }}
16     steps:
17     - name: Checkout
18       uses: actions/checkout@v2
19     - name: download mupdf
20       run: mkdir build && sh misc/getmupdf.sh build/mupdf
21     - name: Install prerquisites
22       if: matrix.os == 'ubuntu-latest'
23       run: sudo apt-get install libgl1-mesa-dev ccache
24     - name: build
25       if: matrix.os == 'ubuntu-latest'
26       run: bash ahbs