Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Merge pull request #2071 from ipsavitsky/ipsavitsky/create-service-ac… #2265

Merge pull request #2071 from ipsavitsky/ipsavitsky/create-service-ac…

Merge pull request #2071 from ipsavitsky/ipsavitsky/create-service-ac… #2265

Workflow file for this run

name: Lint and Test
on:
pull_request:
push:
branches: [main]
jobs:
lint_and_test:
name: Lint and Test - ${{ matrix.go-version }}
strategy:
matrix:
go-version: [1.22.x, 1.23.x, 1.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: false
- name: Checkout code
uses: actions/checkout@v4
- name: Lint package
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Test package
run: |
go test -v ./... -coverprofile=coverage.txt -covermode count
go tool cover -func coverage.txt
- name: Update coverage report
uses: ncruces/go-coverage-report@v0.3.0
with:
report: 'true'
amend: 'true'
reuse-go: 'true'
if:
# Only run for the latest Go version to avoid race conditions
github.event_name == 'push' && matrix.go-version == '1.20.x'
continue-on-error: true