Merge pull request #24 from billphipps/add_connect_disconnect_pause #55
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: Build and Test | |
on: | |
push: | |
branches: [ 'master', 'main', 'release/**' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
# pull and build wolfssl | |
- name: Checkout wolfssl | |
uses: actions/checkout@master | |
with: | |
repository: wolfssl/wolfssl | |
path: wolfssl | |
# Build and test debug build with ASAN | |
- name: Build and test ASAN DEBUG | |
run: cd test && make DEBUG=1 ASAN=1 WOLFSSL_DIR=../wolfssl run | |
# Build and test standard build | |
- name: Build and test | |
run: cd test && make WOLFSSL_DIR=../wolfssl run | |