Skip to content

feat(pactus): update pactus package to version 1.6 (#164) #605

feat(pactus): update pactus package to version 1.6 (#164)

feat(pactus): update pactus package to version 1.6 (#164) #605

Workflow file for this run

name: Lint and format check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.23.2
cache: false
- name: Vendor Go Modules
run: go mod vendor
- name: golangci-lint
run: |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
make check