Skip to content

update: connection close if error and update status 413->400 #227

update: connection close if error and update status 413->400

update: connection close if error and update status 413->400 #227

name: INTEGRATION_TEST
on: [push]
jobs:
Linux_select:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: install siege
run: sudo apt-get update && sudo apt-get install -y siege
- name: build
run: make
- name: run integration test
run: chmod +x test/integration/run_test.sh && ./test/integration/run_test.sh 2>/dev/null
- uses: sarisia/actions-status-discord@v1
if: always()
with:
title: "[INTEGRATION_TEST] SELECT Ver. (on Linux)"
webhook: ${{ secrets.DISCORD_WEBHOOK }}
status: ${{ job.status }}
macOS_select:
runs-on: macos-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: install siege (macOS)
run: brew install siege
- name: build
run: make
- name: run integration test
run: chmod +x test/integration/run_test.sh && ./test/integration/run_test.sh 2>/dev/null
# run: chmod +x test/integration/run_test.sh && ./test/integration/run_test.sh
- uses: sarisia/actions-status-discord@v1
if: always()
with:
title: "[INTEGRATION_TEST] SELECT Ver. (on macOS)"
webhook: ${{ secrets.DISCORD_WEBHOOK }}
status: ${{ job.status }}