Merge pull request #1 from htop-dev/natoscott-continuous-integration

Create ci.yml with a workflow for Ubuntu latest
This commit is contained in:
Nathan Scott 2020-08-17 16:02:20 +10:00 committed by GitHub
commit 98e8da8bd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 29 additions and 0 deletions

29
.github/workflows/ci.yml vendored Normal file
View File

@ -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