mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
19 lines
452 B
YAML
19 lines
452 B
YAML
version: 0.2
|
|
|
|
env:
|
|
variables:
|
|
GO111MODULE: on
|
|
parameter-store:
|
|
YOUTUBE_TEST_API_KEY: "/CodeBuild/youtubeKey"
|
|
VIMEO_TEST_API_KEY: "/CodeBuild/vimeoKey"
|
|
|
|
phases:
|
|
install:
|
|
commands:
|
|
- go version
|
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b /usr/local/bin v1.12.5
|
|
- golangci-lint --version
|
|
build:
|
|
commands:
|
|
- go test -short ./...
|
|
- golangci-lint run |