-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 674a821
Showing
375 changed files
with
34,858 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/build | ||
/.github | ||
*.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @jrapoport |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!-- | ||
If you are reporting a new issue, make sure that we do not have any duplicates | ||
already open. You can ensure this by searching the issue list for this | ||
repository. If there is a duplicate, please close your issue and add a comment | ||
to the existing issue instead. | ||
If you suspect your issue is a bug, please edit your issue description to | ||
include the BUG REPORT INFORMATION shown below. If you fail to provide this | ||
information within 7 days, we cannot debug your issue and will close it. We | ||
will, however, reopen it if you later provide the information. | ||
If you have an issue that can be shown visually, please provide a screenshot or | ||
gif of the problem as well. | ||
--------------------------------------------------- | ||
BUG REPORT INFORMATION | ||
--------------------------------------------------- | ||
Use the commands below to provide key information from your environment: | ||
You do NOT have to include this information if this is a FEATURE REQUEST | ||
--> | ||
|
||
**- Do you want to request a *feature* or report a *bug*?** | ||
|
||
**- What is the current behavior?** | ||
|
||
**- If the current behavior is a bug, please provide the steps to reproduce.** | ||
|
||
**- What is the expected behavior?** | ||
|
||
**- Please mention your Go version, and operating system version.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!-- | ||
Thanks for submitting a pull request! | ||
Please make sure you've read and understood our contributing guidelines; | ||
https://github.com/jrapoport/gothic/blob/master/CONTRIBUTING.md | ||
If this is a bug fix, make sure your description includes "fixes #xxxx", or | ||
"closes #xxxx", where #xxxx is the issue number. | ||
Please provide enough information so that others can review your pull request. | ||
The first three fields are mandatory: | ||
--> | ||
|
||
**- Summary** | ||
|
||
<!-- | ||
Explain the **motivation** for making this change. | ||
What existing problem does the pull request solve? | ||
--> | ||
|
||
**- Test plan** | ||
|
||
<!-- | ||
Demonstrate the code is solid. | ||
Example: The exact commands you ran and their output, screenshots / videos if the pull request changes UI. | ||
--> | ||
|
||
**- Description for the changelog** | ||
|
||
<!-- | ||
Write a short (one line) summary that describes the changes in this | ||
pull request for inclusion in the changelog: | ||
--> | ||
|
||
**- A picture of a cute animal (not mandatory but encouraged)** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Dependency License Scanning | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
fossa: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Fossa init | ||
run: |- | ||
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash | ||
fossa init | ||
- name: Set env | ||
run: echo "line_number=$(grep -n "project" .fossa.yml | cut -f1 -d:)" >> $GITHUB_ENV | ||
- name: Configuration | ||
run: |- | ||
sed -i "${line_number}s|.*| project: [email protected]:${GITHUB_REPOSITORY}.git|" .fossa.yml | ||
cat .fossa.yml | ||
- name: Upload dependencies | ||
run: fossa analyze --debug | ||
env: | ||
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
on: | ||
push: | ||
pull_request: | ||
types: [ opened, synchronize, reopened ] | ||
name: test | ||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
go-version: [ 1.15.x ] | ||
runs-on: ubuntu-latest | ||
steps: | ||
#- name: Install workflow dependencies | ||
# run: apt update && apt install -y make gcc | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Install dependencies | ||
run: make deps | ||
- name: Lint and test | ||
run: make all COVERAGE=1 | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v1 | ||
|
Oops, something went wrong.