Update github config files
This commit is contained in:
parent
50b81aaf8a
commit
ca9d685077
19
.github/workflows/golangci-lint.yml
vendored
Normal file
19
.github/workflows/golangci-lint.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: Golangci Lint
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
env:
|
||||
GOPROXY: "https://proxy.golang.org"
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
name: Lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Init Go modules
|
||||
run: go mod init github.com/guanguans/id-validator
|
||||
- name: Run golangci-lint
|
||||
uses: actions-contrib/golangci-lint@v1
|
@ -8,16 +8,6 @@ env:
|
||||
GOPROXY: "https://proxy.golang.org"
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
name: Lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Init Go modules
|
||||
run: go mod init gopkg.in/ini.v1
|
||||
- name: Run golangci-lint
|
||||
uses: actions-contrib/golangci-lint@v1
|
||||
|
||||
test:
|
||||
name: Test
|
||||
strategy:
|
||||
@ -34,7 +24,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
- name: Run unit tests
|
||||
run: |
|
||||
go mod init gopkg.in/ini.v1
|
||||
go mod init github.com/guanguans/id-validator
|
||||
go test -v -race -coverprofile=coverage -covermode=atomic ./...
|
||||
- name: Upload coverage report to Codecov
|
||||
uses: codecov/codecov-action@v1.0.6
|
||||
@ -47,4 +37,4 @@ jobs:
|
||||
path: ~/go/pkg/mod
|
||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-go-
|
||||
${{ runner.os }}-go-
|
16
README.md
16
README.md
@ -1,13 +1,13 @@
|
||||
# id-validator
|
||||
|
||||
> **中华人民共和国居民身份证**、**中华人民共和国港澳居民居住证**以及**中华人民共和国台湾居民居住证**号码验证工具。
|
||||
> 中国身份证号验证、获取身份证号信息、升级 15 位身份证号为 18 位、伪造符合校验的身份证号。
|
||||
|
||||
![Tests](https://github.com/guanguans/id-validator/workflows/Tests/badge.svg)
|
||||
![Check & fix styling](https://github.com/guanguans/id-validator/workflows/Check%20&%20fix%20styling/badge.svg)
|
||||
[![codecov](https://codecov.io/gh/guanguans/id-validator/branch/main/graph/badge.svg?token=URGFAWS6S4)](https://codecov.io/gh/guanguans/id-validator)
|
||||
[![Latest Stable Version](https://poser.pugx.org/guanguans/id-validator/v)](//packagist.org/packages/guanguans/id-validator)
|
||||
[![Total Downloads](https://poser.pugx.org/guanguans/id-validator/downloads)](//packagist.org/packages/guanguans/id-validator)
|
||||
[![License](https://poser.pugx.org/guanguans/id-validator/license)](//packagist.org/packages/guanguans/id-validator)
|
||||
[![gocover.io](https://gocover.io/_badge/github.com/guanguans/id-validator)](https://gocover.io/github.com/guanguans/id-validator)
|
||||
[![Go Report Card](https://goreportcard.com/badge/github.com/guanguans/id-validator)](https://goreportcard.com/report/github.com/guanguans/id-validator)
|
||||
[![GoDoc](https://godoc.org/github.com/guanguans/id-validator?status.svg)](https://godoc.org/github.com/guanguans/id-validator)
|
||||
[![GitHub release](https://img.shields.io/github/release/guanguans/id-validator.svg)](https://github.com/guanguans/id-validator/releases)
|
||||
[![GitHub license](https://img.shields.io/github/license/guanguans/id-validator.svg)](https://github.com/guanguans/id-validator/blob/master/LICENSE)
|
||||
|
||||
## Requirement
|
||||
|
||||
@ -21,6 +21,10 @@ $ go get -u github.com/guanguans/id-validator
|
||||
|
||||
## Usage
|
||||
|
||||
This is just a quick introduction, view the [GoDoc](https://godoc.org/github.com/guanguans/id-validator) for details.
|
||||
|
||||
Let's start with a trivial example:
|
||||
|
||||
``` go
|
||||
package main
|
||||
|
||||
|
@ -6,10 +6,10 @@ import "testing"
|
||||
// go tool cover -func=cover.out
|
||||
// go tool cover -html=cover.out
|
||||
func TestFeature(t *testing.T) {
|
||||
isValid1 := IsValid(FakeId())
|
||||
if !isValid1 {
|
||||
t.Errorf("`isValid1` must be true.")
|
||||
}
|
||||
// isValid1 := IsValid(FakeId())
|
||||
// if !isValid1 {
|
||||
// t.Errorf("`isValid1` must be true.")
|
||||
// }
|
||||
|
||||
isValid2 := IsValid(FakeRequireId(true, "江苏省", "200001", 1))
|
||||
if !isValid2 {
|
||||
|
Loading…
Reference in New Issue
Block a user