Skip to content

Commit

Permalink
init project
Browse files Browse the repository at this point in the history
  • Loading branch information
yuikns committed Oct 7, 2023
0 parents commit f828428
Show file tree
Hide file tree
Showing 72 changed files with 5,965 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, build with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

/coverage.txt
/.idea

/vendor/

20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: go

go:
- "1.10"
- 1.11
- 1.12
- 1.13
- master

install:
- go get -t ./...

script:
- go build
- go test -v ./...
- go test -v -bench=.
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...

after_success:
- bash <(curl -s https://codecov.io/bash)
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 ArgCV

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# STORK

Simple Tools and Operations Resource Kit

[![Build Status][badge-travis]][link-travis]
[![codecov][badge-codecov]][link-codecov]

[badge-travis]: https://travis-ci.org/argcv/stork.svg?branch=master
[link-travis]: https://travis-ci.org/argcv/stork
[badge-codecov]: https://codecov.io/gh/argcv/stork/branch/master/graph/badge.svg
[link-codecov]: https://codecov.io/gh/argcv/stork
3 changes: 3 additions & 0 deletions assert/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Assert

A simple assertion library for Go. Implements [this doc](https://github.com/google/googletest/blob/main/docs/primer.md)
Loading

0 comments on commit f828428

Please sign in to comment.