Skip to content

Commit

Permalink
Merge pull request #152 from kevincobain2000/feature/limit-ci
Browse files Browse the repository at this point in the history
CI - run when needed
  • Loading branch information
kevincobain2000 committed Nov 2, 2023
2 parents 8cbdd91 + 5d396a4 commit 877885a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
on: [push, pull_request]
on:
pull_request:
paths:
- '**/*.go'
- '**/*.mod'
- '**/*.sum'
- '**/*.yaml'
name: CI
jobs:
build:
Expand Down
14 changes: 13 additions & 1 deletion .github/workflows/coveritup.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
on: [push, pull_request]
on:
pull_request:
paths:
- '**/*.go'
- '**/*.mod'
- '**/*.sum'
- '**/*.yaml'
push:
paths:
- '**/*.go'
- '**/*.mod'
- '**/*.sum'
- '**/*.yaml'
name: Cover It Up
jobs:
coveritup:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
on: [pull_request]
on:
pull_request:
paths:
- '**/*.go'
- '**/*.mod'
- '**/*.sum'
- '**/*.yaml'
name: CI
jobs:
test:
Expand Down

0 comments on commit 877885a

Please sign in to comment.