1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 09:37:02 +00:00
Files
go-inbucket/.travis.yml
2018-12-23 12:45:40 -08:00

41 lines
645 B
YAML

sudo: false
env:
global:
- GO111MODULE=on
# deploy will use first go version listed below.
language: go
go:
- "1.11.x"
- "master"
install:
- "go get golang.org/x/lint/golint"
- "make deps"
jobs:
include:
- stage: elm
install:
- "cd ui"
- "npm install"
script:
- "elm-format --validate ."
- "npm run build"
language: elm
elm: "0.19.0"
- stage: deploy
install: "true"
script: "curl -sL https://git.io/goreleaser | bash"
addons:
apt:
packages:
- rpm
stages:
- test
- elm
- name: deploy
if: tag IS present