Skip to content

Various minor adjustments to the code and preparation for GTK+ 3 #12

Various minor adjustments to the code and preparation for GTK+ 3

Various minor adjustments to the code and preparation for GTK+ 3 #12

Workflow file for this run

---
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