summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
blob: 74d0ece89ca7cd39dc353928784a085b3f87e666 (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
27
28
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

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