mirror of https://github.com/aristocratos/bpytop
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 configpull/375/head
parent
930e6eac1e
commit
2fba9676f1
|
@ -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
|
Loading…
Reference in New Issue