Browse Source

Add CI

master
Samuel Thibault 3 years ago
parent
commit
caccd5ad73
1 changed files with 25 additions and 0 deletions
  1. 25
    0
      .github/workflows/ci.yml

+ 25
- 0
.github/workflows/ci.yml View File

@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: dependencies
run: sudo apt-get install libpcaudio-dev libsonic-dev ronn kramdown
- name: autoconf
run: ./autogen.sh ; chmod -x INSTALL m4/*.m4
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check

Loading…
Cancel
Save