Skip to content

Commit

Permalink
Add nightly build along with deprecation checks (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
phdhiren authored Aug 2, 2022
1 parent a9ad1f1 commit 26ca0b7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ env:
APIGEE_EDGE_ACCOUNT_JSON_KEY: ${{ secrets.APIGEE_EDGE_ACCOUNT_JSON_KEY }}
APIGEE_EDGE_HYBRID_ENDPOINT: ${{ secrets.APIGEE_EDGE_HYBRID_ENDPOINT }}
APIGEE_EDGE_HYBRID_ORGANIZATION: ${{ secrets.APIGEE_EDGE_HYBRID_ORGANIZATION }}
SYMFONY_DEPRECATIONS_HELPER: "disabled"
BROWSERTEST_OUTPUT_DIRECTORY: "sites/simpletest/browser_output"
BROWSERTEST_OUTPUT_BASE_URL: ""
MINK_DRIVER_ARGS_WEBDRIVER: '["chrome", { "chromeOptions": { "w3c": false } }, "http://127.0.0.1:9515/wd/hub"]'

on:
push:
pull_request_target:
schedule:
- cron: '00 01 * * *'

jobs:
build:
Expand Down Expand Up @@ -51,6 +52,12 @@ jobs:

steps:

- name: Disable deprecations check for PR
if: github.event_name != 'schedule'
run: |
echo "Disable deprecations check"
echo "SYMFONY_DEPRECATIONS_HELPER=disabled" >> $GITHUB_ENV
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
Expand Down

0 comments on commit 26ca0b7

Please sign in to comment.