summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorNathan Scott <natoscott@users.noreply.github.com>2020-08-17 14:59:23 +1000
committerGitHub <noreply@github.com>2020-08-17 14:59:23 +1000
commitb3003f02fa235a128b497ba55024bd475ecf938c (patch)
treed4c2b6a987864f7a69c0b8db8dd9761846491a5e /.github
parentdfd9279f87791e36a5212726781c31fbe7110361 (diff)
Create ci.yml
Initial version of htop CI using github actions.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 00000000..10ca129e
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,21 @@
+name: CI
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: autogen
+ run: ./autogen.sh
+ - name: configure
+ run: ./configure
+ - name: make
+ run: make

© 2014-2024 Faster IT GmbH | imprint | privacy policy