mirror of
https://github.com/mellowcandle/bitwise.git
synced 2025-02-23 07:54:33 +01:00
24 lines
409 B
YAML
24 lines
409 B
YAML
name: C/C++ CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install xmllint
|
|
run: sudo apt-get install libcunit1-dev
|
|
- name: Bootstrap
|
|
run: ./bootstrap.sh
|
|
- name: configure
|
|
run: ./configure --enable-gcov
|
|
- name: make check
|
|
run: make check
|
|
|