Skip to content

Re add len check before copying SNI #4

Re add len check before copying SNI

Re add len check before copying SNI #4

Workflow file for this run

name: CI Workflow
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
# - name: Change Directory
# working-directory: ./src/test
- name: Build Test Executable
working-directory: ./src/test
run: pwd;make clean all
- name: Run Tests
run: ./test_tls
- name: Report Test Results
run: |
if [ $? -eq 0 ]; then
echo "All tests passed!"
else
echo "Tests failed!"
exit 1
fi
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: test-results
path: test-results.zip