summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
blob: bb7fb0a8e4ab30778e93cbc8afcf0f9b3a253903 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: CI

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: make
    - name: Distcheck
      run: make distcheck

  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

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