ci: add paths

## Description

by adding paths the ci job wont run if the files aren't touched. this is a change from before where they would run to see if there were changes

Closes: #XXX
This commit is contained in:
Marko
2020-05-19 14:08:10 +02:00
committed by GitHub
parent 3fb80e560d
commit 1ecc886c44
3 changed files with 25 additions and 15 deletions

View File

@@ -1,14 +1,25 @@
name: Lint
on: [pull_request]
on:
pull_request:
push:
branches:
- master
jobs:
golangci:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: technote-space/get-diff-action@v1
with:
SUFFIX_FILTER: |
.go
.mod
.sum
- uses: golangci/golangci-lint-action@master
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.27
args: --timeout 10m
github-token: ${{ secrets.github_token }}
if: "env.GIT_DIFF != ''"

View File

@@ -1,19 +1,18 @@
name: Proto check
on: [pull_request]
on:
pull_request:
paths:
- "**.proto"
jobs:
proto-checks:
proto-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: technote-space/get-diff-action@v1
id: git_diff
with:
SUFFIX_FILTER: .proto
SET_ENV_NAME_INSERTIONS: 1
SET_ENV_NAME_LINES: 1
- name: lint
run: make proto-lint
if: "env.GIT_DIFF != ''"
proto-breakage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: check-breakage
run: make proto-check-breaking-ci
if: "env.GIT_DIFF != ''"