Skip to content

Bump the minor group with 2 updates (#293) #408

Bump the minor group with 2 updates (#293)

Bump the minor group with 2 updates (#293) #408

name: build and test
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- "1.24"
- "1.25"
name: run tests with go version ${{ matrix.go }}
steps:
- name: install go
uses: actions/setup-go@v6
with:
go-version: "${{ matrix.go }}"
check-latest: true
- name: checkout code
uses: actions/checkout@v5
- name: Build
run: make build
- name: Test
run: |
make cover
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out
flag-name: Go-${{ matrix.go }}
parallel: true
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: coverage.${{ matrix.go }}
path: coverage.*
- name: Assert no changes
run: make assert-no-changes
# notifies that all test jobs are finished.
finish:
needs: build
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true