Skip to content

Dockerfile: Bump to haproxy 2.4.24, go 1.19.12 (#1022) #623

Dockerfile: Bump to haproxy 2.4.24, go 1.19.12 (#1022)

Dockerfile: Bump to haproxy 2.4.24, go 1.19.12 (#1022) #623

Workflow file for this run

name: build
on:
push:
branches:
- master
- 'release-*'
pull_request:
branches:
- master
- 'release-*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19.12
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- name: Run build
run: go build -o haproxy-ingress pkg/main.go
- name: Run tests
run: go test ./...