Skip to content

Created Empty() function for URLSet #7

Created Empty() function for URLSet

Created Empty() function for URLSet #7

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.25.x
- name: Install dependencies
run: go mod tidy
- name: Build
run: go build ./...
- name: Run tests with coverage
run: go test -coverprofile=coverage.out ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out