Skip to content

Commit

Permalink
First release of C++ library for asynchronous TCP based client-server…
Browse files Browse the repository at this point in the history
… communication
  • Loading branch information
nilshenrich committed Apr 21, 2024
2 parents 0daa051 + c4cd645 commit 8ca0a92
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ jobs:
with:
tag_name: ${{ steps.tag-name.outputs.out }}
release_name: ${{ steps.tag-name.outputs.out }}
body: ${{ steps.tag-message.outputs.out }}
body: ${{ env.TAG_MSG }}
draft: false
prerelease: false
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive

- name: Run tests
run: ./RunAllTests.sh
Expand Down
3 changes: 3 additions & 0 deletions test/gtest/RunAllTests.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/bin/bash

# Exit if any command fails
set -e

# Get directory of this script
currentDir=$(dirname $(readlink -f $0))

Expand Down

0 comments on commit 8ca0a92

Please sign in to comment.