Waybar/.github/workflows/linux.yml

28 lines
551 B
YAML
Raw Normal View History

2021-07-01 06:28:01 +00:00
name: linux
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
distro:
- alpine
- archlinux
- debian
- fedora
- opensuse
runs-on: ubuntu-latest
container:
image: alexays/waybar:${{ matrix.distro }}
steps:
- uses: actions/checkout@v2
- name: configure
run: meson -Dman-pages=enabled build
- name: build
run: ninja -C build
2021-09-14 07:02:38 +00:00
- name: test
run: meson test -C build --no-rebuild --print-errorlogs --suite waybar