Skip to content

chore(deps): bump actions/setup-go from 5.0.2 to 5.1.0 #823

chore(deps): bump actions/setup-go from 5.0.2 to 5.1.0

chore(deps): bump actions/setup-go from 5.0.2 to 5.1.0 #823

Workflow file for this run

on:
push:
branches: ['master']
pull_request:
name: build
jobs:
test:
strategy:
matrix:
go-version: [1.21.x, 1.22.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- name: Test
run: go test -covermode atomic -coverprofile='${{ matrix.os }}-${{ matrix.go-version }}.cov' ./...
- name: Coveralls Parallel
uses: coverallsapp/github-action@4cdef0b2dbe0c9aa26bed48edb868db738625e79
with:
file: '${{ matrix.os }}-${{ matrix.go-version }}.cov'
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@4cdef0b2dbe0c9aa26bed48edb868db738625e79
with:
parallel-finished: true