mirror of
https://github.com/taigrr/github2mr.git
synced 2026-04-02 03:09:09 -07:00
Initial release of github2mr.
This is the initial release which is fully-functional and works for myself, self-hosted github enterprise installations, and privately hosted gitbucket installs. It has not been tested against other systems (gogs, gitea, etc), but reports of success/failure or patches would be most welcome.
This commit is contained in:
18
.github/run-tests.sh
vendored
Executable file
18
.github/run-tests.sh
vendored
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Install tools to test our code-quality.
|
||||
go get -u golang.org/x/lint/golint
|
||||
|
||||
# Failures cause aborts
|
||||
set -e
|
||||
|
||||
# Run the linter
|
||||
echo "Launching linter .."
|
||||
golint -set_exit_status ./...
|
||||
echo "Completed linter .."
|
||||
|
||||
# Run the vet-checker.
|
||||
echo "Launching go vet check .."
|
||||
go vet ./...
|
||||
echo "Completed go vet check .."
|
||||
|
||||
Reference in New Issue
Block a user