Skip to content

Commit c880ee1

Browse files
committed
fix:
1 parent 6033885 commit c880ee1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/makefile.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
# run: make websocketd
2626

2727
- name: build and run websocketd
28-
run: go run --port=8080 ./examples/bash/count.sh &
28+
run: go build
2929

3030
- name: test
31-
run: ./websocat.x86_64-unknown-linux-musl -E ws://127.0.0.1:8080
31+
run: |
32+
./websocketd --port=8080 ./examples/bash/count.sh &
33+
./websocat.x86_64-unknown-linux-musl -E ws://127.0.0.1:8080

0 commit comments

Comments
 (0)