diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 100619ede..464f0bea1 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -4,6 +4,10 @@ on: pull_request: branches: [main, develop] types: [opened, synchronize] + paths: + - '**/*.ex' + - '**/*.exs' + - '**/*.html.heex' jobs: style: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a1b60cef3..7015a548e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,10 +3,17 @@ name: Build and Test on: push: branches: [develop] + paths: + - '**/*.ex' + - '**/*.exs' + - '**/*.html.heex' pull_request: branches: [develop] types: [opened, synchronize] - + paths: + - '**/*.ex' + - '**/*.exs' + - '**/*.html.heex' jobs: build: runs-on: ubuntu-latest