We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e250a28 commit eb7187fCopy full SHA for eb7187f
1 file changed
.github/workflows/go.yml
@@ -4,25 +4,24 @@
4
name: Go
5
6
on:
7
- push:
8
- branches: [ "main" ]
9
- pull_request:
10
+ push:
+ branches: ['main']
+ pull_request:
11
12
jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v3
17
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
18
+ - name: Set up Go
19
+ uses: actions/setup-go@v4
20
+ with:
21
+ go-version: '1.23'
22
- - name: Set up Go
- uses: actions/setup-go@v4
- with:
- go-version: '1.20'
23
+ # - name: Build
24
+ # run: go build -v ./...
25
- - name: Build
- run: go build -v ./...
26
-
27
- - name: Test
28
- run: go test -v ./...
+ - name: Test
+ run: go test -v ./...
0 commit comments