Skip to content

Commit

Permalink
Fix workflow bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcornwell committed Jul 9, 2024
1 parent a04d154 commit 811f263
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.22.5'

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./... > TestResults-${{ matrix.go-version }
- name: Upload Go test results
run: go test -v ./...

- name: Upload Go test results
uses: actions/upload-artifact@v4
with:
name: Go-results-${{ matrix.go-version }}
path: TestResults-${{ matrix.go-version }}
name: Go-results
path: TestResults

0 comments on commit 811f263

Please sign in to comment.