]> jfr.im git - irc/quakenet/newserv.git/blob - .github/workflows/ccpp.yml
BUILD: remove travis files + update README.md with new badge
[irc/quakenet/newserv.git] / .github / workflows / ccpp.yml
1 name: C/C++ CI
2
3 on:
4 push:
5 branches: [ master ]
6 pull_request:
7 branches: [ master ]
8
9 jobs:
10 build:
11
12 runs-on: ubuntu-18.04
13
14 steps:
15 - uses: actions/checkout@v2
16 - name: Install dependencies
17 run: sudo apt-get install git gcc make python2.7 python-minimal flex bison liblua5.1-0-dev libmariadb-client-lgpl-dev libpq-dev libpcre3-dev zlib1g-dev
18 - name: configure
19 run: ./configure -R -v
20 - name: make
21 run: make
22 - name: make install
23 run: make install