-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dont do anything out of the ordinary
- Loading branch information
Andre Medeiros
committed
Jul 14, 2020
1 parent
059f51c
commit e07c906
Showing
2 changed files
with
0 additions
and
14 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 |
---|---|---|
|
@@ -2,9 +2,6 @@ on: [push, pull_request] | |
name: Integration Tests | ||
jobs: | ||
integration: | ||
# We want to run on external PRs, but not on our own internal PRs as they'll be run | ||
# by the push to the branch. | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | ||
name: "${{ matrix.tag }} (${{ matrix.platform }})" | ||
strategy: | ||
fail-fast: false | ||
|
@@ -13,10 +10,6 @@ jobs: | |
tag: [command, crystal, golang, memcached, mysql, node, postgres, redis, ruby] | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
|
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 |
---|---|---|
|
@@ -2,20 +2,13 @@ on: [push, pull_request] | |
name: Unit Tests | ||
jobs: | ||
test: | ||
# We want to run on external PRs, but not on our own internal PRs as they'll be run | ||
# by the push to the branch. | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | ||
name: "go ${{ matrix.go-version }} (${{ matrix.platform }})" | ||
strategy: | ||
matrix: | ||
go-version: [1.13.x, 1.14.x] | ||
platform: [ubuntu-latest, macos-latest] | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
|