This repository was archived by the owner on Jun 19, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version : 2
7
+ updates :
8
+ - package-ecosystem : github-actions
9
+ directory : /
10
+ labels :
11
+ - dependabot
12
+ - actions
13
+ schedule :
14
+ interval : daily
15
+
16
+ - package-ecosystem : " gomod" # See documentation for possible values
17
+ directory : " /" # Location of package manifests
18
+ schedule :
19
+ interval : " daily"
Original file line number Diff line number Diff line change
1
+ name : Go
2
+
3
+ on :
4
+ push :
5
+ branches : [ main ]
6
+ pull_request :
7
+ branches : [ main ]
8
+
9
+ jobs :
10
+ Test :
11
+ strategy :
12
+ matrix :
13
+ go-version : [1.19.x, 1.21.x]
14
+ os : [ubuntu-latest, macos-latest]
15
+ runs-on : ${{ matrix.os }}
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+
19
+ - name : Set up Go
20
+ uses : actions/setup-go@v5
21
+ with :
22
+ go-version : ${{ matrix.go-version }}
23
+
24
+ - name : Build
25
+ run : go build -v ./...
You can’t perform that action at this time.
0 commit comments