Skip to content

Commit d57486e

Browse files
only run make test once (#895)
1 parent d6c7726 commit d57486e

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/build_test_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
filters: .github/filters.yml
4141

42-
go-build-test:
42+
go-test:
4343
environment: ${{ github.event.pull_request.head.repo.fork == true && 'prod-external' || 'prod' }}
4444
runs-on: ubuntu-latest
4545
needs: changes

.github/workflows/pull_request_ci.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and Test PR
1+
name: Build PR
22

33
on:
44
pull_request:
@@ -43,7 +43,7 @@ jobs:
4343
- name: Validate YAML file
4444
run: yamllint templates
4545

46-
go-build-test:
46+
go-build:
4747
runs-on: ubuntu-latest
4848
needs: changes
4949
if: ${{ contains(fromJSON(needs.changes.outputs.paths), 'src') }}
@@ -81,9 +81,6 @@ jobs:
8181
- name: Check for generated diff
8282
run: make check-gen-diff
8383

84-
- name: Test
85-
run: make test
86-
8784
docker-build:
8885
runs-on: ubuntu-latest
8986
needs: changes

0 commit comments

Comments
 (0)