Skip to content

Merge pull request #53 from trustmaster/parser #79

Merge pull request #53 from trustmaster/parser

Merge pull request #53 from trustmaster/parser #79

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- v*
branches:
- master
- lint
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.12
only-new-issues: true
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: go test
run: go test ./... -count=1 -race