generated from nimblehq/git-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from nimblehq/release/2.1.0
Release 2.1.0
- Loading branch information
Showing
31 changed files
with
251 additions
and
260 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,6 @@ | ||
# Team | ||
# @carryall is the Team Lead and the others are team members | ||
* @carryall @hoangmirs @malparty @Nihisil @suphanatjarukulgowit | ||
|
||
# Engineering Leads | ||
CODEOWNERS @nimblehq/engineering-leads |
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
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,14 @@ | ||
--- | ||
name: "Chore" | ||
about: "Open a Chore for minor update." | ||
title: "Update " | ||
labels: "type : chore" | ||
--- | ||
|
||
## Why | ||
|
||
Describe the update details and why it's needed. | ||
|
||
## Who Benefits? | ||
|
||
Describe who will be the beneficiaries e.g. everyone, specific chapters, clients... |
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
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
https://github.com/nimblehq/git-template/issues/?? | ||
Resolve https://github.com/nimblehq/gin-templates/issues/?? | ||
|
||
## What happened 👀 | ||
|
||
Describe the big picture of your changes here to communicate to the team why we should accept this pull request. | ||
Provide a description of the **changes** this pull request brings to the codebase. Additionally, when the pull request is still being worked on, a checklist of the planned changes is welcome to track progress. | ||
|
||
## Insight 📝 | ||
|
||
Describe in details how to test the changes, which solution you tried but did not go with, referenced documentation is welcome as well. | ||
Describe in detail why this solution is the most appropriate, which solution you tried but did not go with, and how to test the changes. References to relevant documentation are welcome as well. | ||
|
||
## Proof Of Work 📹 | ||
|
||
Show us the implementation: screenshots, gif, etc. | ||
Show us the implementation: screenshots, GIFs, etc. |
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 |
---|---|---|
|
@@ -6,21 +6,26 @@ jobs: | |
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Install cookiecutter | ||
run: sudo -H python3 -m pip install cookiecutter | ||
|
||
- name: Setup Go environment | ||
uses: actions/setup-go@v2.1.3 | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.16.x | ||
go-version: 1.20.x | ||
|
||
- name: Linters | ||
uses: golangci/golangci-lint-action@v2 | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
version: v1.29 | ||
version: v1.51 | ||
|
||
- name: Test | ||
env: | ||
|
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 @@ | ||
golang 1.20 |
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
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
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 |
---|---|---|
@@ -1,9 +1,21 @@ | ||
module github.com/nimblehq/gin-templates | ||
|
||
go 1.16 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/onsi/ginkgo v1.15.0 | ||
github.com/onsi/gomega v1.10.5 | ||
github.com/spf13/cobra v1.1.1 | ||
) | ||
|
||
require ( | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/nxadm/tail v1.4.4 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb // indirect | ||
golang.org/x/sys v0.0.0-20210112080510-489259a85091 // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
) |
Oops, something went wrong.