Skip to content

Commit 991fb75

Browse files
committed
CI: Only run when pushing on master
Avoids to run the check twice on PRs
1 parent 1b9079c commit 991fb75

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Web CI
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request: null
37
permissions:
48
contents: read
59
jobs:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
],
5959
"start": [
6060
"Composer\\Config::disableProcessTimeout",
61-
"php -S localhost:8000 -t ./public_html ./public_html/index.php"
61+
"php -S 10.122.250.179:8000 -t ./public_html ./public_html/index.php"
6262
],
6363
"develop": [
6464
"@build-dev",

0 commit comments

Comments
 (0)