Browse Source

ci: skip coverage for non-go changes (#6927)

pull/6934/head
Sam Kleinman 3 years ago
committed by GitHub
parent
commit
ef79241f79
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      .github/workflows/coverage.yml

+ 4
- 0
.github/workflows/coverage.yml View File

@ -2,6 +2,9 @@ name: Test Coverage
on: on:
pull_request: pull_request:
push: push:
paths:
- "**.go"
- "!test/"
branches: branches:
- master - master
- release/** - release/**
@ -50,6 +53,7 @@ jobs:
with: with:
PATTERNS: | PATTERNS: |
**/**.go **/**.go
"!test/"
go.mod go.mod
go.sum go.sum
- name: install - name: install


Loading…
Cancel
Save