From d6adc2b68143b0baef5ad60f0cb0dea70c913ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Fri, 21 Aug 2020 10:37:25 +0200 Subject: github/ci: improve ci - split steps for readability - fail on compiler warnings - add whitespace check - run on all branches - run `make distcheck` --- .github/workflows/ci.yml | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74d0ece8..5cb69fe3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,22 +1,22 @@ name: CI -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: [ push, pull_request ] jobs: build-ubuntu-latest: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: Install Dependencies + run: sudo apt-get install libncursesw5-dev + - name: Bootstrap + run: ./autogen.sh + - name: Configure + run: ./configure --enable-werror - name: Build - run: | - sudo apt-get install libncursesw5-dev - ./autogen.sh - ./configure - make + run: make + - name: Distcheck + run: make distcheck # build-macos-latest: # runs-on: macos-latest @@ -27,3 +27,12 @@ jobs: # ./autogen.sh # ./configure # make + + whitespace_check: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: check-whitespaces + run: git diff-tree --check $(git hash-object -t tree /dev/null) HEAD -- cgit v1.2.3