Skip to content

fix(lint): please the linter #16

fix(lint): please the linter

fix(lint): please the linter #16

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.26.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v6
- name: Build http-check
run: go build
working-directory: ./cmd/http-check
- name: Build http-check-server
run: go build
working-directory: ./cmd/http-check-server
- name: Run tests
run: go test ./... -v -covermode=count