Skip to content

chore(deps): bump coverallsapp/github-action from 2.3.1 to 2.3.2 #819

chore(deps): bump coverallsapp/github-action from 2.3.1 to 2.3.2

chore(deps): bump coverallsapp/github-action from 2.3.1 to 2.3.2 #819

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@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
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@43f11c4e058174f808ee9cd63701b6c42fe3f5e3
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@43f11c4e058174f808ee9cd63701b6c42fe3f5e3
with:
parallel-finished: true