Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to go modules, update dependencies to the newest ones #28

Merged
merged 1 commit into from
Mar 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
29 changes: 29 additions & 0 deletions .github/ ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Bug report
about: Report a bug in the project
---

<!-- Thank you for your contribution -->

**Description**

<!-- Provide a clear and concise description of the problem.
Describe where it appears, when it occurred, and what it affects. -->

<!-- Provide relevant technical details such as the browser name and version, or the operating system. -->

**Expected result**

<!-- Describe what you expect to happen. -->

**Actual result**

<!-- Describe what happens instead. -->

**Steps to reproduce**

<!-- List the steps to follow to reproduce the bug. Attach any files, links, code samples, or screenshots that could help in investigating the problem. -->

**Troubleshooting**

<!-- Describe the steps you have already taken to solve the issue. -->
14 changes: 14 additions & 0 deletions .github/ ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Feature request
about: Suggest an improvement to the project
---

<!-- Thank you for your contribution.-->

**Description**

<!-- Provide a clear and concise description of the feature. -->

**Reasons**

<!-- Explain why we should add this feature. Provide use cases to illustrate its benefits. -->
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ branches:
- "master"
env:
global:
- GO111MODULE=off
- GO111MODULE=on
- RUN_ON_CI=true

jobs:
include:
- stage: test
name: "Code Quality Analysis"
name: "Before commit checks"
before_script:
# Download the binary to bin folder in $GOPATH
- curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o $GOPATH/bin/dep
# Make the binary executable
- chmod +x $GOPATH/bin/dep
script: ./hack/ci/run-tests.sh
- stage: test
name: "Before commit checks"
name: "Code Quality Analysis"
script: ./hack/ci/run-lint.sh
267 changes: 0 additions & 267 deletions Gopkg.lock

This file was deleted.

27 changes: 0 additions & 27 deletions Gopkg.toml

This file was deleted.

20 changes: 20 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module github.com/mszostok/codeowners-validator

go 1.13

require (
github.com/fatih/color v1.9.0
github.com/google/go-github/v29 v29.0.3
github.com/hashicorp/go-multierror v1.0.0
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.4.2
github.com/spf13/afero v1.2.2
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.5.1
github.com/vrischmann/envconfig v1.2.0
golang.org/x/net v0.0.0-20190320064053-1272bf9dcd53 // indirect
golang.org/x/oauth2 v0.0.0-20190319182350-c85d3e98c914
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/pipe.v2 v2.0.0-20140414041502-3c2ca4d52544
)
Loading