DifferentialPressureSensorBase: Complete combination of common code #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Ubuntu packages | |
run: sudo apt-get install autoconf-archive liblog4cxx-dev libi2c-dev | |
- name: Pull submodules | |
run: git submodule init ; | |
git submodule update | |
- name: autoreconf | |
run: autoreconf -iv | |
- name: configure | |
run: mkdir build; cd build; ../configure | |
- name: make | |
run: cd build; make V=1 | |
- name: make check | |
run: cd build; make V=1 check |