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 4044aee commit f7755f7Copy full SHA for f7755f7
.github/workflows/test.yml
@@ -1,11 +1,17 @@
1
-on: pull_request
+name: Test
2
+on:
3
+ push:
4
+ pull_request:
5
+ schedule:
6
+ - cron: '0 9 * * 1' # M H d m w (Mondays at 9:00)
7
jobs:
- build:
8
+ test:
9
+ if: startsWith(github.ref, 'refs/tags') || github.event_name == 'pull_request' || github.event_name == 'schedule' || github.repository_owner != 'iterative'
10
runs-on: ubuntu-latest
11
steps:
- - uses: actions/setup-go@v2
- with:
- go-version: ^1.16
- - uses: actions/checkout@v2
- - run: make build
- - run: make test
12
+ - uses: actions/setup-go@v2
13
+ with:
14
+ go-version: ^1.16
15
+ - uses: actions/checkout@v2
16
+ - run: make build
17
+ - run: make test
0 commit comments