We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38ad8af commit e319edbCopy full SHA for e319edb
.github/dependabot.yml
@@ -1,6 +1,10 @@
1
version: 2
2
updates:
3
+ - package-ecosystem: github-actions
4
+ directory: /
5
+ schedule:
6
+ interval: monthly
7
- package-ecosystem: gomod
8
directory: /
9
schedule:
- interval: daily
10
.github/workflows/main.yml
@@ -2,15 +2,23 @@ name: CI
on:
push:
+ branches:
+ - main
pull_request:
- schedule:
- - cron: '0 0 * * 1' # weekly
+
11
12
jobs:
13
test:
14
runs-on: ubuntu-latest
15
16
steps:
- - uses: actions/checkout@v1
17
+ - uses: actions/checkout@v3
18
+ - uses: actions/setup-go@v3
19
+ with:
20
+ go-version: '1.19'
21
22
- name: Get dependencies
23
run: go get -v -t -d ./...
24
- name: go build
0 commit comments