mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-20 14:22:48 +00:00
62 lines
1.4 KiB
YAML
62 lines
1.4 KiB
YAML
name: phpgeo Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "**"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
php-versions:
|
|
- "7.3"
|
|
- "7.4"
|
|
- "8.0"
|
|
- "8.1"
|
|
|
|
name: "phpgeo build - PHP ${{ matrix.php-versions }}"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
coverage: xdebug
|
|
|
|
- name: Validate composer.json and composer.lock
|
|
run: composer validate
|
|
|
|
- name: Cache Composer packages
|
|
id: composer-cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: vendor
|
|
key: ${{ runner.os }}-php-${{ matrix.php-versions }}-${{ hashFiles('composer.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-php-${{ matrix.php-versions }}-
|
|
|
|
- name: Install dependencies
|
|
if: steps.composer-cache.outputs.cache-hit != 'true'
|
|
run: composer install --prefer-dist --no-progress --no-suggest
|
|
|
|
- name: Lint PHP Sources
|
|
run: composer run-script ci:lint
|
|
|
|
- name: PHP Code Sniffer
|
|
run: composer run-script ci:sniff
|
|
|
|
- name: Static Analysis
|
|
run: composer run-script ci:psalm
|
|
|
|
- name: Unit Tests
|
|
run: composer run-script ci:tests
|