diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 8f03032..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,16 +0,0 @@ -version: 2 -updates: - - package-ecosystem: github-actions - directory: / - schedule: - interval: weekly - commit-message: - prefix: chore - include: scope - - package-ecosystem: gomod - directory: / - schedule: - interval: weekly - commit-message: - prefix: chore - include: scope diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 4751cc2..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: test -on: - push: - branches: - - main - pull_request: - branches: - - main -jobs: - test: - name: Run tests - runs-on: ubuntu-latest - strategy: - matrix: - go: ["1.19.x", "1.20.x", "1.21.x"] - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 2 - - name: Setup Go ${{ matrix.go }} - uses: actions/setup-go@v5 - with: - go-version: ${{ matrix.go }} - - name: Run Go tests - run: | - go test -v ./... diff --git a/LICENSE b/LICENSE index 9b2726b..fdc0587 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 andoma-go +Copyright (c) 2024 Andoma IT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 5b2e1a5..fb3058b 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,7 @@ # sanitize -[![Go Reference](https://img.shields.io/badge/godoc-reference-5272B4.svg)](https://pkg.go.dev/github.com/andoma-go/sanitize) -[![Activity](https://img.shields.io/github/commit-activity/m/andoma-go/sanitize)](https://github.com/andoma-go/sanitize/activity) -[![Status](https://img.shields.io/github/actions/workflow/status/andoma-go/sanitize/test.yml)](https://github.com/andoma-go/sanitize/actions/workflows/test.yml) -[![License](https://img.shields.io/github/license/andoma-go/sanitize.svg)](https://github.com/andoma-go/sanitize/blob/master/LICENSE) -[![Go version](https://img.shields.io/github/go-mod/go-version/andoma-go/sanitize)](https://go.dev) - ## Installation ```bash -go get -u github.com/andoma-go/sanitize +go get -u git.company.lan/gopkg/sanitize ``` - -## Documentation - -View the generated [documentation](https://pkg.go.dev/github.com/andoma-go/sanitize#readme-documentation) diff --git a/go.mod b/go.mod index 2afb2b3..e84704f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ -module github.com/andoma-go/sanitize +module git.company.lan/gopkg/sanitize -go 1.21 +go 1.21.5 require github.com/stretchr/testify v1.8.4