Skip to content

Commit

Permalink
build(.github) refine test run conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
lucatume committed Sep 15, 2023
1 parent f6d0c41 commit 0049ff9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/static-analysis.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Static Analysis
on: [ push ]
on:
push:
paths:
- "src/**"
- "tests/**"
- "composer.json"
jobs:
lint-on-56:
name: PHP 5.6 lint
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Test
on: [ push ]
on:
push:
paths:
- "src/**"
- "tests/**"
- "composer.json"
jobs:
test_codeception_4_php_56:
name: PHP 5.6, Codeception 4
Expand Down

0 comments on commit 0049ff9

Please sign in to comment.