File tree Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,31 @@ jobs:
18
18
with :
19
19
go-version-file : go.mod
20
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
21
# - name: build using makefile
25
22
# run: make websocketd
26
23
27
24
- name : build websocketd
28
25
run : go build
29
26
27
+ - name : Archive build artifacts
28
+ uses : actions/upload-artifact@v4
29
+ with :
30
+ name : websocketd
31
+ path : websocketd
32
+
33
+ test :
34
+ needs : build
35
+ runs-on : ubuntu-latest
36
+
37
+ steps :
38
+ - name : Download built websocketd
39
+ uses : actions/download-artifact@v4
40
+ with :
41
+ name : websocketd
42
+
43
+ - name : setup client
44
+ run : wget https://github.com/vi/websocat/releases/latest/download/websocat.x86_64-unknown-linux-musl && chmod +x websocat.x86_64-unknown-linux-musl
45
+
30
46
- name : test
31
47
run : |
32
48
./websocketd --port=8080 ./examples/bash/dump-env.sh &
You can’t perform that action at this time.
0 commit comments