diff options
author | Ayush Agarwal <ayushnix@fastmail.com> | 2022-03-01 19:13:46 +0530 |
---|---|---|
committer | Ayush Agarwal <ayushnix@fastmail.com> | 2022-03-01 19:13:46 +0530 |
commit | 87877a06fc7965b4d9c4cbd6bc53e567cedf7192 (patch) | |
tree | 5eed5cde67133401a864500120f78d7eef055766 /.github/workflows | |
parent | bd47665882a75dc3fedab02c69ed4118752eb404 (diff) |
ci: run actions only when changes made to `tessen`
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7bfb54..7728a28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,12 @@ --- name: run shellcheck and shfmt -on: [push, pull_request] +on: + push: + paths: + - 'tessen' + pull_request: + paths: + - 'tessen' jobs: lint: name: use shellcheck to lint tessen |