summaryrefslogtreecommitdiffstats
path: root/.github/workflows/php.yml
blob: b5dc4d34e80f1aba55841d4f8bfd53f172187e31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: PHP Composer

on:
  schedule:
    - cron: '*/5 * * * *'

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2

    - name: Validate composer.json and composer.lock
      run: composer validate