Skip to content

Commit

Permalink
chore: add windows test runner and tweaks
Browse files Browse the repository at this point in the history
Signed-off-by: Keith Zantow <[email protected]>
  • Loading branch information
kzantow committed May 17, 2024
1 parent aa7bfad commit ade0eb2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text eol=lf
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,23 @@ jobs:
tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@main
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.18'
go-version-file: go.mod
- name: Run tests
run: make test
- name: Send coverage report to coveralls
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov

windows-tests:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run tests
run: make test

0 comments on commit ade0eb2

Please sign in to comment.