Skip to content

fix: address regression on host:port binding (#89) #179

fix: address regression on host:port binding (#89)

fix: address regression on host:port binding (#89) #179

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
REVISION: ${{ github.event.pull_request.head.sha || github.sha }}
jobs:
build:
name: Build and Test
permissions:
pull-requests: write
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Docker Build
run: make docker-build
- name: Build
run: make build
- name: Test
run: make test
- name: Create cover files
run: |
make cover.txt
make cover.html
- name: Go Beautiful HTML Coverage
uses: gha-common/go-beautiful-html-coverage@main
with:
threshold: 100
- name: Cover Check
run: make cover-check
- name: Version Check
run: make version-check
- name: Commit Check
run: make commit-check message='${{ github.event.pull_request.title }}'