Skip to content

Commit

Permalink
Fix GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Vic Shóstak committed Jun 16, 2020
1 parent d6b9b9d commit 2de93e0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/testing_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,5 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Get dependencies
run: go get -v -t -d ./...

- name: Test
run: go test -v .
run: go test -v -cover -race ./...
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ clean:
@echo "$(GREEN)[OK]$(NOCOLOR) Project was cleaned!"

test:
@go test -v ./...
@go test -v -cover -race ./...
@echo "$(GREEN)[OK]$(NOCOLOR) Project was tested!"

install: generate
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ OPTIONS:

**Golang:**

- [create-go-app/net_http-go-template](https://github.com/create-go-app/net_http-go-template) — Backend template with built-in `net/http` ([pkg/net/http](https://golang.org/pkg/net/http/)).
- [create-go-app/fiber-go-template](https://github.com/create-go-app/fiber-go-template) — Backend template with `Fiber` ([gofiber/fiber](https://github.com/gofiber/fiber)).
- [WIP] [create-go-app/echo-go-template](https://github.com/create-go-app/echo-go-template) — Backend template with `Echo` ([labstack/echo](https://github.com/labstack/echo)).
- `net/http` [create-go-app/net_http-go-template](https://github.com/create-go-app/net_http-go-template) — Backend template with built-in net/http ([pkg/net/http](https://golang.org/pkg/net/http/)).
- `fiber` [create-go-app/fiber-go-template](https://github.com/create-go-app/fiber-go-template) — Backend template with Fiber ([gofiber/fiber](https://github.com/gofiber/fiber)).
- `echo` [WIP] [create-go-app/echo-go-template](https://github.com/create-go-app/echo-go-template) — Backend template with Echo ([labstack/echo](https://github.com/labstack/echo)).

**JavaScript:**

- [create-go-app/react-js-template](https://github.com/create-go-app/react-js-template) — Frontend template with `React.js` ([facebook/react](https://github.com/facebook/react)).
- [create-go-app/react-ts-template](https://github.com/create-go-app/react-ts-template) — Frontend template with `React.js with TypeScript` ([facebook/react](https://github.com/facebook/react)).
- [create-go-app/preact-js-template](https://github.com/create-go-app/preact-js-template) — Frontend template with `Preact.js` ([preactjs/preact](https://github.com/preactjs/preact)).
- `react-js` [create-go-app/react-js-template](https://github.com/create-go-app/react-js-template) — Frontend template with React.js ([facebook/react](https://github.com/facebook/react)).
- `react-ts` [create-go-app/react-ts-template](https://github.com/create-go-app/react-ts-template) — Frontend template with React.js TypeScript ([facebook/react](https://github.com/facebook/react)).
- `preact` [create-go-app/preact-js-template](https://github.com/create-go-app/preact-js-template) — Frontend template with Preact ([preactjs/preact](https://github.com/preactjs/preact)).

## Configured production-ready Docker containers

Expand Down

0 comments on commit 2de93e0

Please sign in to comment.