-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump github.com/gin-gonic/gin from 1.9.0 to 1.9.1 in /backend_service…
…s/profile (#109) * Closes #114 - splits backend tests for profile service into its own workflow and moves all lint/unit/integration tests as a requirement for release. * Bump github.com/gin-gonic/gin in /backend_services/profile Bumps [github.com/gin-gonic/gin](https://github.com/gin-gonic/gin) from 1.9.0 to 1.9.1. - [Release notes](https://github.com/gin-gonic/gin/releases) - [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md) - [Commits](gin-gonic/gin@v1.9.0...v1.9.1) --- updated-dependencies: - dependency-name: github.com/gin-gonic/gin dependency-type: direct:production ... --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Derek Downey <downeyd@google.com>
- Loading branch information
1 parent
9c92de9
commit d60c41c
Showing
5 changed files
with
273 additions
and
1,201 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,28 @@ | ||
|
||
name: Backend Profile Service code tests | ||
on: | ||
pull_request: | ||
paths: | ||
- 'backend_services/profile/**' | ||
jobs: | ||
test: | ||
name: Profile Service Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: '^1.19.2' | ||
- name: Check go version | ||
run: go version | ||
- name: Lint files | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
working-directory: ./backend_services/profile | ||
args: --timeout 120s --verbose | ||
- name: Run unit tests | ||
run: | | ||
make profile-test | ||
- name: Run integration tests | ||
run: | | ||
make profile-test-integration |
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
Oops, something went wrong.