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 5ce1774 commit 653b9e6Copy full SHA for 653b9e6
.github/workflows/test.yml
@@ -1,12 +1,20 @@
1
name: Test
2
on:
3
push:
4
+ tags:
5
+ - v*
6
+ branches:
7
+ - main
8
pull_request:
9
schedule:
10
- cron: '0 9 * * 1' # M H d m w (Mondays at 9:00)
11
jobs:
12
+ lint:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - uses: golangci/golangci-lint-action@v2
17
test:
- if: startsWith(github.ref, 'refs/tags') || github.event_name == 'pull_request' || github.event_name == 'schedule' || github.repository_owner != 'iterative'
18
runs-on: ubuntu-latest
19
steps:
20
- uses: actions/setup-go@v2
.golangci.yml
@@ -0,0 +1,9 @@
+run:
+ timeout: 10m
+ skip-dirs:
+ - iterative
+ - cml
+output:
+ format: github-actions
+severity:
+ default-severity: error
0 commit comments