We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c5107f + 37269c7 commit ce26eeaCopy full SHA for ce26eea
.github/workflows/json-syntax.yml
@@ -2,9 +2,6 @@ name: JSON Syntax Check
2
3
on:
4
pull_request:
5
- paths:
6
- - '**/*.json'
7
-
8
jobs:
9
json-syntax:
10
runs-on: ubuntu-latest
.github/workflows/ruby-syntax.yml
@@ -2,9 +2,6 @@ name: Ruby Syntax Check
- - '**/*.rb'
ruby-syntax:
@@ -16,4 +13,4 @@ jobs:
16
13
ruby-version: '3.2'
17
14
- name: Check Ruby syntax
18
15
run: |
19
- find . -name '*.rb' -exec ruby -c {} \;
+ find . \( -name '*.rb' -o -name 'rp' \) -exec ruby -c {} \;
0 commit comments