Skip to content

Bump vladopajic/go-test-coverage from 2.11.2 to 2.11.3 #57

Bump vladopajic/go-test-coverage from 2.11.2 to 2.11.3

Bump vladopajic/go-test-coverage from 2.11.2 to 2.11.3 #57

Workflow file for this run

---
name: lint
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: "${{ github.workflow }}-$${{ github.pull_request.number || github.run_id }}"
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
check-latest: true
- run: |
gofmt -d .
test -z $(gofmt -l .)