-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from topfreegames/feature/migrate-v2-github-a…
…ctions Migrate v2 to use GitHub actions
- Loading branch information
Showing
2 changed files
with
98 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
deps: | ||
name: Dependencies | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: '1.13' | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Restore cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Download dependencies | ||
run: go mod download | ||
unit-test: | ||
name: Unit Test | ||
runs-on: ubuntu-latest | ||
needs: deps | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: '1.13' | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Restore cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Setup dependencies | ||
env: | ||
GO111MODULE: off | ||
run: make setup-ci | ||
- name: Run tests | ||
run: make test-coverage | ||
- name: Send coverage | ||
env: | ||
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: ~/go/bin/goveralls -coverprofile=coverprofile.out -service=github | ||
e2e-test-nats: | ||
name: Nats Test End to End | ||
runs-on: ubuntu-latest | ||
needs: deps | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: '1.13' | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Restore cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Run tests | ||
run: make e2e-test-nats | ||
e2e-test-grpc: | ||
name: GRPC Test End to End | ||
runs-on: ubuntu-latest | ||
needs: deps | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: '1.13' | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Restore cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Run tests | ||
run: make e2e-test-grpc |
This file was deleted.
Oops, something went wrong.