Don't crash server due to client misbehavior #69
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: Run integration tests | |
on: [push, pull_request] | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Docker Test TCP | |
run: | | |
make docker-test | |
- name: Docker Test SSL | |
run: | | |
make docker-test-ssl | |
- name: Docker Test Ipv6 TCP | |
run: | | |
make docker-test-ipv6 | |
- name: Docker Test Ipv6 SSL | |
run: | | |
make docker-test-ipv6-ssl | |
- name: Docker Test Ipv6-only TCP | |
run: | | |
env V6ONLY=true make docker-test-ipv6 | |
- name: Docker Test Ipv6-only SSL | |
run: | | |
env V6ONLY=true make docker-test-ipv6-ssl |