Various minor adjustments to the code and preparation for GTK+ 3 #12
Workflow file for this run
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: Compile | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
name: Build Linux | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
compiler: [gcc, clang] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install requirements | |
run: sudo apt-get install intltool libgtk2.0-dev libtool-bin meson | |
- name: Build | |
env: | |
CC: ${{ matrix.compiler }} | |
run: meson setup builddir && ninja -C builddir |