We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a0ca09 commit 6033885Copy full SHA for 6033885
.github/workflows/makefile.yml
@@ -1,4 +1,4 @@
1
-name: build
+name: build and test
2
3
on:
4
push:
@@ -24,10 +24,8 @@ jobs:
24
# - name: build using makefile
25
# run: make websocketd
26
27
- - name: build native
28
- run: go build
+ - name: build and run websocketd
+ run: go run --port=8080 ./examples/bash/count.sh &
29
30
- name: test
31
- run: |
32
- ./websocketd --port=8080 ./examples/bash/count.sh &
33
- ./websocat.x86_64-unknown-linux-musl -E ws://$(hostname):8080
+ run: ./websocat.x86_64-unknown-linux-musl -E ws://127.0.0.1:8080
0 commit comments