This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add PresignRequest API Signed-off-by: Haytham Abuelfutuh <[email protected]> * Unit test and cleanup Signed-off-by: Haytham Abuelfutuh <[email protected]> * more cleanup Signed-off-by: Haytham Abuelfutuh <[email protected]> * More unit tests Signed-off-by: Haytham Abuelfutuh <[email protected]> * Update to latest stow commit Signed-off-by: Haytham Abuelfutuh <[email protected]> * Update setup-go action Signed-off-by: Haytham Abuelfutuh <[email protected]> * update go Signed-off-by: Haytham Abuelfutuh <[email protected]> * Update github actions Signed-off-by: Haytham Abuelfutuh <[email protected]> * Update go version Signed-off-by: Haytham Abuelfutuh <[email protected]> * Pinning go to 1.17 Signed-off-by: Haytham Abuelfutuh <[email protected]> * Update stow version to created release Signed-off-by: Haytham Abuelfutuh <[email protected]>
- Loading branch information
Showing
16 changed files
with
326 additions
and
86 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 |
---|---|---|
|
@@ -27,15 +27,15 @@ jobs: | |
goreleaser: | ||
name: Goreleaser | ||
runs-on: ubuntu-latest | ||
needs: [bump-version] | ||
needs: [ bump-version ] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: "0" | ||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.14 | ||
go-version: '1.17' | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v2 | ||
with: | ||
|
@@ -52,27 +52,21 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: "0" | ||
- name: Unit Tests | ||
uses: cedrickring/[email protected] | ||
env: | ||
GO111MODULE: "on" | ||
- uses: actions/setup-go@v2 | ||
with: | ||
args: make mod_download && make test_unit_codecov | ||
go-version: '1.17' | ||
- name: Unit Tests | ||
run: make mod_download && make test_unit_codecov | ||
- name: Push CodeCov | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
file: coverage.txt | ||
flags: unittests | ||
fail_ci_if_error: true | ||
- name: Lint | ||
uses: cedrickring/[email protected] | ||
env: | ||
GO111MODULE: "on" | ||
- uses: actions/setup-go@v2 | ||
with: | ||
args: make install && make lint | ||
go-version: '1.17' | ||
- name: Lint | ||
run: make install && make lint | ||
- name: Bench tests | ||
uses: cedrickring/[email protected] | ||
env: | ||
GO111MODULE: "on" | ||
with: | ||
args: make install && make test_benchmark | ||
run: make install && make test_benchmark |
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 |
---|---|---|
|
@@ -11,30 +11,24 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: "0" | ||
- name: Unit Tests | ||
uses: cedrickring/[email protected] | ||
env: | ||
GO111MODULE: "on" | ||
- uses: actions/setup-go@v2 | ||
with: | ||
args: make mod_download && make test_unit_codecov | ||
go-version: '1.17' | ||
- name: Unit Tests | ||
run: make mod_download && make test_unit_codecov | ||
- name: Push CodeCov | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
file: coverage.txt | ||
flags: unittests | ||
fail_ci_if_error: true | ||
- name: Lint | ||
uses: cedrickring/[email protected] | ||
env: | ||
GO111MODULE: "on" | ||
- uses: actions/setup-go@v2 | ||
with: | ||
args: make install && make lint | ||
go-version: '1.17' | ||
- name: Lint | ||
run: make install && make lint | ||
- name: Bench tests | ||
uses: cedrickring/[email protected] | ||
env: | ||
GO111MODULE: "on" | ||
with: | ||
args: make install && make test_benchmark | ||
run: make install && make test_benchmark | ||
test-generate-integrity: | ||
name: Ensure go generate has run | ||
runs-on: ubuntu-latest | ||
|
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
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.