Merge pull request #1387 from aitos-io/release-v3.0.3 #101
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-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: prepare curl | |
run: sudo apt-get install libcurl4-openssl-dev | |
shell: bash | |
- name: prepare libcheck | |
run: sudo apt-get install check | |
shell: bash | |
- name: prepare rulecheck | |
run: sudo apt-get install cppcheck | |
shell: bash | |
- name: make rulecheck | |
run: make rulecheck | |
- name: make tests | |
run: make tests | |
- name: run | |
run: ./build/tests/boattest |