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 5e1b61c commit 59f3c58Copy full SHA for 59f3c58
.github/workflows/makefile.yml
@@ -1,4 +1,4 @@
1
-name: Makefile CI
+name: build
2
3
on:
4
push:
@@ -14,5 +14,20 @@ jobs:
14
steps:
15
- uses: actions/checkout@v4
16
17
- - name: make binary
18
- run: make websocketd
+ - uses: actions/setup-go@v5
+ with:
19
+ go-version-file: go.mod
20
+
21
+ - name: setup client
22
+ run: wget https://github.com/vi/websocat/releases/latest/download/websocat.x86_64-unknown-linux-musl && chmod +x websocat.x86_64-unknown-linux-musl
23
24
+ # - name: build using makefile
25
+ # run: make websocketd
26
27
+ - name: build native
28
+ run: go build
29
30
+ - name: test
31
+ run: |
32
+ ./websocketd --port=8080 python ./examples/python/count.py &
33
+ ./websocat.x86_64-unknown-linux-musl -E ws://$(hostname):8080
0 commit comments