Skip to content

Commit

Permalink
Fix: pull_requestでも動くように
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Sep 2, 2023
1 parent b170e1a commit b2605ea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/java_lint.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
name: "Lint code"
name: "Lint Java code"

on:
push:
paths:
- "**.java"
- "./.github/workflows/java_lint.yml"
pull_request:
paths:
- "**.java"
- "./.github/workflows/java_lint.yml"

defaults:
run:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
name: "Lint code"
name: "Lint Python code"

on:
push:
paths:
- "**.py"
- "./.github/workflows/python_lint.yml"
pull_request:
paths:
- "**.py"
- "./.github/workflows/python_lint.yml"

defaults:
run:
Expand Down

0 comments on commit b2605ea

Please sign in to comment.