Skip to content

validator: fix EmailRX for v0.7.6 #1

validator: fix EmailRX for v0.7.6

validator: fix EmailRX for v0.7.6 #1

Workflow file for this run

name: Test
env:
GO_VERSION: "1.24"
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Download dependencies
run: go mod download
- name: Format code
run: go fmt ./...
- name: Vet code
run: go vet ./...
- name: Run tests
run: go test -race -vet=off ./...
- name: Test coverage
run: |
go test -covermode=count -coverprofile=coverage.out ./...