Skip to content

Update module github.com/haproxytech/config-parser/v4 to v5 #591

Update module github.com/haproxytech/config-parser/v4 to v5

Update module github.com/haproxytech/config-parser/v4 to v5 #591

Workflow file for this run

---
name: test & lint
on:
push:
pull_request:
jobs:
code-lint:
name: code-lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
args: --timeout=5m
version: latest
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run go tests and generate coverage report
run: make unit-test