update: connection close if error and update status 413->400 #227
Workflow file for this run
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: 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 }} |