Skip to content

Commit a433227

Browse files
author
=
committed
add test action for non-ssl
1 parent f78ea89 commit a433227

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on:
2+
pull_request:
3+
push:
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: start and hit no-ssl
10+
shell: bash
11+
run: >
12+
cargo build
13+
./target/debug/cosock-test-server &
14+
SERVER_PID=$!
15+
curl http://127.0.0.1:8080/delay/3
16+
kill $SERVER_PID

0 commit comments

Comments
 (0)