mirror of
https://github.com/araddon/dateparse.git
synced 2025-04-25 10:10:31 +08:00
Various other cleanup: * Update README.md * Update github workflows * Add to copyright * Add .gitignore
14 lines
201 B
YAML
14 lines
201 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.20.x
|
|
|
|
before_install:
|
|
- go get -t -v ./...
|
|
|
|
script:
|
|
- go test -race -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|