Skip to content

Commit b98ae15

Browse files
committed
Update workflow
1 parent 59823ce commit b98ae15

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/go.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Go
55

66
on:
77
push:
8-
branches: [ "main" ]
8+
branches: [ "main", "fix-build" ]
99
pull_request:
1010
branches: [ "main" ]
1111

@@ -19,10 +19,10 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v4
2121
with:
22-
go-version: '1.20'
22+
go-version: '1.23.2'
2323

2424
- name: Build
25-
run: go build -v ./...
25+
run: cd browser && go build -v ./...
2626

2727
- name: Test
28-
run: go test -v ./...
28+
run: cd browser && go test -v ./...

0 commit comments

Comments
 (0)