chore: rename

This commit is contained in:
2024-05-05 13:48:10 +03:00
parent 8a0d6a2f7f
commit 766c2585a9
5 changed files with 4 additions and 57 deletions
-16
View File
@@ -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
-27
View File
@@ -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 ./...
+1 -1
View File
@@ -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
+1 -11
View File
@@ -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)
+2 -2
View File
@@ -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