Skip to content

Commit

Permalink
MT-71 Add CI check for C++ client. (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
gnrunge committed May 26, 2021
1 parent e338624 commit a090584
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/mynmr_tools_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,19 @@ jobs:
git update-index --refresh
git diff-index HEAD --exit-code
# CPP Client
cpp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cpp-check
run: |
sudo apt-get -y install cmake
cd clients/cpp
CXXFLAGS="-w" cmake CMakeLists.txt
make
make test
# Java Client
java:
runs-on: ubuntu-latest
Expand Down

0 comments on commit a090584

Please sign in to comment.