-
-
Notifications
You must be signed in to change notification settings - Fork 94
40 lines (32 loc) · 798 Bytes
/
go.yml
File metadata and controls
40 lines (32 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Go
on:
# push:
# tags:
# - '*'
# # branches: [ $default-branch ]
# pull_request:
# branches: [ $default-branch ]
workflow_dispatch:
jobs:
job1:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: shogo82148/actions-goveralls@v1
with:
# path-to-profile: coverage.out
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24.0'
check-latest: true
- name: Show Go version
run: go version
# Disabled due to https://github.com/golang/go/issues/41205#issuecomment-692862157
# - name: Check
# run: go vet -v ./...
- name: Test
run: go test -v ./...
- name: Build
run: go build -v ./...