sowm

An itsy bitsy floating window manager (220~ sloc!).
git clone git://mfeller.io/sowm.git
Log | Files | Refs | README | LICENSE

commit 51a96547ef4eb99b4550aa3e813132a5267c05dd
parent 1fb75817aa741bb56d118d0347c1ff3f2d3cf755
Author: Dylan Araps <dylan.araps@gmail.com>
Date:   Mon, 25 Nov 2019 14:35:50 +0000

sowm: Test patches in CI.

Diffstat:
A.github/workflows/main.yml | 9+++++++++
MMakefile | 3+++
2 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -0,0 +1,9 @@ +name: CI +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Apply patches. + run: make test diff --git a/Makefile b/Makefile @@ -19,3 +19,6 @@ install: all clean: rm -f sowm *.o + +test: + for patch in patches/*.patch; do patch -p1 < "$patch"; done