From 2fba9676f13a1a85becd8ce49e7ea8ad19cdbb9f Mon Sep 17 00:00:00 2001 From: "thinkbubble.cloud@thinkbubble.com" <86694624+DirtyApexAlpha@users.noreply.github.com> Date: Sat, 1 Jan 2022 01:16:00 -0600 Subject: [PATCH] create i-makefile.yml usage: bpytop.py [-h] [-b BOXES] [-lc] [-v] [--debug] optional arguments: -h, --help show this help message and exit -b BOXES, --boxes BOXES which boxes to show at start, example: -b "cpu mem net proc" -lc, --low-color disable truecolor, converts 24-bit colors to 256-color -v, --version show version info and exit --debug start with loglevel set to DEBUG overriding value set in config --- .github/workflows/i-makefile.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/i-makefile.yml diff --git a/.github/workflows/i-makefile.yml b/.github/workflows/i-makefile.yml new file mode 100644 index 0000000..dc8815f --- /dev/null +++ b/.github/workflows/i-makefile.yml @@ -0,0 +1,27 @@ +name: Makefile CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: configure + run: ./configure + + - name: Install dependencies + run: make + + - name: Run check + run: make check + + - name: Run distcheck + run: make distcheck