forked from Snowflake-Labs/terraform-provider-snowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (32 loc) · 726 Bytes
/
.travis.yml
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
language: go
go:
- "1.13"
env:
- GO111MODULE=on
go_import_path: github.com/chanzuckerberg/terraform-provider-snowflake
install:
# - npm install -g snyk
- make setup
script:
- make
matrix:
include:
- name: unit/acceptance tests
script:
- make test-acceptance-ci
after_success:
- bash <(curl -s https://codecov.io/bash)
# Disable snyk until https://github.com/snyk/snyk/issues/354 is resolved
# - name: snyk
# script:
# - snyk monitor --org=czi
# - snyk test
- name: docs check
script:
- make check-docs
- name: modules check
script:
- make check-mod
- name: linter check
script:
- make lint-ci