Skip to content

Merge pull request #16 from shayan0v0n/feature/dns-resolution-check #11

Merge pull request #16 from shayan0v0n/feature/dns-resolution-check

Merge pull request #16 from shayan0v0n/feature/dns-resolution-check #11

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: test
on:
push:
paths:
- "**.go"
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
unitTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '>1.23.1'
- name: Test
run: go test -v ./...