Skip to content

Commit

Permalink
Merge pull request #5 from dominodatalab/ci-updates
Browse files Browse the repository at this point in the history
Minor CI updates
  • Loading branch information
ddl-ebrown authored May 26, 2024
2 parents 968e8a3 + ed3cc97 commit eb7788e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
- name: Archive test and code coverage results
uses: actions/upload-artifact@v4
with:
name: test-results
# NOTE: do not change this or it will break the coverage report
name: coverage-results
path: |
test/*.xml
**/cover.out
- name: Produce Summary Report
if: always() # run this step even if previous step failed
Expand All @@ -48,6 +48,6 @@ jobs:
steps:
- uses: fgrosse/go-coverage-report@v1.0.1
with:
coverage-artifact-name: "test-results" # can be omitted if you used this default value
coverage-artifact-name: "coverage-results" # can be omitted if you used this default value
coverage-file-name: "coverage/cover.out"
continue-on-error: true
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ main
*.dll
*.so
*.dylib
./columnize
./stattocsv


# Test binary, build with `go test -c`
*.test
Expand All @@ -34,5 +37,3 @@ coverage/

# Dependency directories (remove the comment below to include it)
# vendor/
columnize
stattocsv

0 comments on commit eb7788e

Please sign in to comment.