Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 90e430e

Browse files
committed
chore(Release): Remove redundant test jobs
Signed-off-by: grzesuav <grzesuav@gmail.com>
1 parent c4148a6 commit 90e430e

File tree

2 files changed

+1
-20
lines changed

2 files changed

+1
-20
lines changed

.github/workflows/release-docker.yaml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,9 @@ on:
55
tags:
66
- 'v[0-9]+.[0-9]+.[0-9]+'
77
jobs:
8-
tests:
9-
runs-on: ubuntu-18.04
10-
strategy:
11-
matrix:
12-
test: ['unit-test', 'integration-test']
13-
name: ${{ matrix.test }}
14-
steps:
15-
- name: Checkout
16-
uses: actions/checkout@v2
17-
- name: setup env
18-
run: |
19-
echo "::set-env name=GOPATH::$(go env GOPATH)"
20-
echo "::add-path::$(go env GOPATH)/bin"
21-
- name: Setup go
22-
uses: actions/setup-go@v1
23-
with:
24-
go-version: 1.13.5
25-
- run: make ${{ matrix.test }}
268
release-docker:
279
name: Release docker image
2810
runs-on: ubuntu-18.04
29-
needs: ['tests']
3011
steps:
3112
- name: Checkout
3213
uses: actions/checkout@v2

.github/workflows/test-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Test and Release (if on master)
3-
on: [push]
3+
on: [push, pull_request]
44
jobs:
55
tests:
66
runs-on: ubuntu-18.04

0 commit comments

Comments
 (0)