name: linux on: [push, pull_request] jobs: build: strategy: matrix: distro: - alpine - archlinux - debian - fedora - opensuse - gentoo cpp_std: [c++20] include: - distro: fedora cpp_std: c++20 runs-on: ubuntu-latest container: image: alexays/waybar:${{ matrix.distro }} steps: - uses: actions/checkout@v3 - name: configure run: meson -Dman-pages=enabled -Dcpp_std=${{matrix.cpp_std}} build - name: build run: ninja -C build - name: test run: make test