From e07c906424ad18056f28d5f32573b5010af8fa8f Mon Sep 17 00:00:00 2001 From: Andre Medeiros Date: Mon, 13 Jul 2020 21:06:53 -0400 Subject: [PATCH] dont do anything out of the ordinary --- .github/workflows/integration.yml | 7 ------- .github/workflows/test.yml | 7 ------- 2 files changed, 14 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 1701186..564e679 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -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/cancel-workflow-action@0.4.0 - with: - access_token: ${{ github.token }} - name: Install Go uses: actions/setup-go@v2 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3203bec..17165ad 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,9 +2,6 @@ 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: @@ -12,10 +9,6 @@ jobs: platform: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.platform }} steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.4.0 - with: - access_token: ${{ github.token }} - name: Install Go uses: actions/setup-go@v2 with: