PHP CRON CI #935
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: PHP CRON CI | |
on: | |
push: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
# Runs every day at 00:00 | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# - name: Validate composer.json and composer.lock | |
# run: composer validate --strict | |
# - name: Cache Composer packages | |
# id: composer-cache | |
# uses: actions/cache@v2 | |
# with: | |
# path: vendor | |
# key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
# restore-keys: | | |
# ${{ runner.os }}-php- | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: Update PHP versions.json | |
run: php bin/stats tags:php | |
- uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Adding back the json created... | |
branch: ${{ github.head_ref }} |