summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Scott <natoscott@users.noreply.github.com>2020-08-17 16:02:20 +1000
committerGitHub <noreply@github.com>2020-08-17 16:02:20 +1000
commit98e8da8bd332b10b2c6c2c124ce9fc46fd6a53a6 (patch)
tree89c873af3de88f819c929d4437b6aca99a78347f
parentdfd9279f87791e36a5212726781c31fbe7110361 (diff)
parent7fbbf25afeb76baf1186181202d6d214d7a7936b (diff)
Merge pull request #1 from htop-dev/natoscott-continuous-integration
Create ci.yml with a workflow for Ubuntu latest
-rw-r--r--.github/workflows/ci.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 00000000..74d0ece8
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,29 @@
+name: CI
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build-ubuntu-latest:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Build
+ run: |
+ sudo apt-get install libncursesw5-dev
+ ./autogen.sh
+ ./configure
+ make
+
+# build-macos-latest:
+# runs-on: macos-latest
+# steps:
+# - uses: actions/checkout@v2
+# - name: make
+# run: |
+# ./autogen.sh
+# ./configure
+# make