Skip to content

Pr/http logging

Pr/http logging #25

Workflow file for this run

name: Test hx
on:
push:
branches:
- master
paths:
- "cmd/hx/**"
- "http/**"
pull_request:
types: [opened, synchronize, reopened]
paths:
- "cmd/hx/**"
- "http/**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
with:
egress-policy: audit
- name: Install Go
uses: buildjet/setup-go@555ce355a95ff01018ffcf8fbbd9c44654db8374 # v5.0.2
with:
go-version: 1.25.x
- name: Checkout code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Test
run: make -C cmd/hx test
- name: Build
run: make -C cmd/hx build