summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yaml
blob: 42ee8ced2449c4340f502678e6dc878867bc126b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: Continuous Integration

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: reconfigure
      run: autoreconf -fi
    - name: configure
      run: ./configure --prefix="/usr"
    - name: make
      run: make
    - name: make check
      run: make check
    - name: make install
      run: sudo make install