Skip to content

Commit

Permalink
First open source commit of Flyte's Interface specification Lanugage
Browse files Browse the repository at this point in the history
  • Loading branch information
Ketan Umare committed Aug 5, 2019
0 parents commit 62222ae
Show file tree
Hide file tree
Showing 964 changed files with 480,825 additions and 0 deletions.
1 change: 1 addition & 0 deletions flyteidl/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gen/* linguist-generated=true
10 changes: 10 additions & 0 deletions flyteidl/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.idea/*
.DS_Store
vendor

# Vim swapfiles
*.swp
*.swo

dist
gen/pb_python/flyteidl.egg-info/
30 changes: 30 additions & 0 deletions flyteidl/.golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# WARNING: THIS FILE IS MANAGED IN THE 'BOILERPLATE' REPO AND COPIED TO OTHER REPOSITORIES.
# ONLY EDIT THIS FILE FROM WITHIN THE 'LYFT/BOILERPLATE' REPOSITORY:
#
# TO OPT OUT OF UPDATES, SEE https://github.com/lyft/boilerplate/blob/master/Readme.rst

run:
skip-dirs:
- pkg/client

linters:
disable-all: true
enable:
- deadcode
- errcheck
- gas
- goconst
- goimports
- golint
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- staticcheck
- structcheck
- typecheck
- unconvert
- unparam
- unused
- varcheck
21 changes: 21 additions & 0 deletions flyteidl/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
sudo: required
language: go
go:
- "1.12"
services:
- docker
jobs:
include:
- stage: test
name: protos
install: true
script: make test
- stage: test
name: unit tests
install: make install
script: make test_unit
- if: tag IS present AND fork = false
stage: release
name: release Python package
install: skip
script: make release
3 changes: 3 additions & 0 deletions flyteidl/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This project is governed by [Lyft's code of
conduct](https://github.com/lyft/code-of-conduct). All contributors
and participants agree to abide by its terms.
Loading

0 comments on commit 62222ae

Please sign in to comment.