File tree 2 files changed +39
-0
lines changed
2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will build a golang project
2
+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
3
+
4
+ name : Go
5
+
6
+ on :
7
+ push :
8
+ branches : [ "main" ]
9
+ pull_request :
10
+ branches : [ "main" ]
11
+
12
+ jobs :
13
+
14
+ stable :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+
19
+ - name : Set up Go
20
+ uses : actions/setup-go@v4
21
+ with :
22
+ go-version : ' stable'
23
+
24
+ - name : Test
25
+ run : go test -race -v ./...
26
+ module :
27
+ runs-on : ubuntu-latest
28
+ steps :
29
+ - uses : actions/checkout@v4
30
+
31
+ - name : Set up Go
32
+ uses : actions/setup-go@v4
33
+ with :
34
+ go-version-file : ' go.mod'
35
+
36
+ - name : Test
37
+ run : go test -race -v ./...
Original file line number Diff line number Diff line change
1
+ ![ Go workflow] ( https://github.com/brackendawson/webcal-proxy/actions/workflows/go.yml/badge.svg )
2
+
1
3
# webcal-proxy
2
4
A simple server to proxy and filter webcal links.
3
5
You can’t perform that action at this time.
0 commit comments