-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: added csv stuct tags * chore: prep for CVS encoding * chore: added logic for generating excel * fix: added support for CSV * chore: fix lint error * ci: debug test errors * chore: test with 1.22.5 * ci: update test * test: fix test case breaking CI * ci: add logic to update code coverage * docs: update licenses
- Loading branch information
1 parent
bdc5af3
commit 91a7e33
Showing
27 changed files
with
7,173 additions
and
186 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,39 @@ | ||
name: Update Coverage | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
coverage: | ||
name: Update Code Coverage | ||
runs-on: ubuntu-latest | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} | ||
steps: | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/[email protected] | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
check-latest: true | ||
id: go | ||
|
||
- name: "Get dependencies" | ||
id: dependencies | ||
run: | | ||
go get | ||
- name: Go Tests | ||
run: | | ||
mkdir -p tests/data | ||
make tests-coverage | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
check-latest: true | ||
|
@@ -51,7 +51,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
check-latest: true | ||
|
@@ -75,7 +75,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
check-latest: true | ||
|
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
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.