Merge pull request #250 from dm9pZCAq/master #17
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: Does this build look infected? | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download dependencies | |
run: | | |
sudo apt update -y | |
sudo apt install -y libx11-xcb-dev libxcb-randr0-dev libxcb-xinerama0-dev | |
- name: Build | |
run: CFLAGS='-DWITH_XINERAMA=1' make | |
- name: Check | |
run: ./lemonbar -h || exit 0 |