Skip to content

Commit

Permalink
Create check.yml
Browse files Browse the repository at this point in the history
Let's try to ditch Travis CI...
  • Loading branch information
LemonBoy authored Nov 20, 2020
1 parent 0bfd555 commit 07ef720
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: C/C++ CI

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-get install -y libx11-xcb-dev libxcb-randr0-dev libxcb-xinerama0-dev
- name: Build
run: make CFLAGS='-DWITH_XINERAMA=1'
- name: Check
run: ./lemonbar -h

0 comments on commit 07ef720

Please sign in to comment.