Skip to content

Commit

Permalink
Update GitHub Actions artifact naming to include Go version
Browse files Browse the repository at this point in the history
  • Loading branch information
JaSei committed Feb 21, 2025
1 parent 948c287 commit 1c0cc21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/setup-go@v4
with:
go-version: 1.18
go-version: 1.20
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
Expand All @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ['1.18', '1.19', '1.20', 1.21', '1.22', '1.23', '1.24']
go-version: ['1.20', 1.21', '1.22', '1.23', '1.24']
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: code-coverage-report-${{ matrix.os }}
name: code-coverage-report-${{ matrix.os }}-${{ matrix.go-version }}
path: coverage.txt

coverage:
Expand Down

0 comments on commit 1c0cc21

Please sign in to comment.