0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
This commit is contained in:
David Goodwin 2020-01-10 13:24:58 +00:00 committed by GitHub
parent 52e0d3e4b0
commit 6582678173
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

21
.github/workflows/php.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: PHP Composer
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run psalm (static analysis)
run: composer psalm