mirror of
https://github.com/lkeme/BiliHelper-personal.git
synced 2025-12-18 17:00:06 +08:00
68 lines
1.3 KiB
YAML
68 lines
1.3 KiB
YAML
name: "CI"
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
phpunit:
|
|
name: "PHPUnit"
|
|
runs-on: "ubuntu-20.04"
|
|
|
|
strategy:
|
|
matrix:
|
|
php-version:
|
|
- "7.4"
|
|
- "8.0"
|
|
- "8.1"
|
|
- "8.2"
|
|
- "8.3"
|
|
dependencies:
|
|
- "highest"
|
|
|
|
steps:
|
|
- name: "Checkout"
|
|
uses: "actions/checkout@v2"
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: "Install PHP"
|
|
uses: "shivammathur/setup-php@v2"
|
|
with:
|
|
php-version: "${{ matrix.php-version }}"
|
|
coverage: "pcov"
|
|
ini-values: "zend.assertions=1"
|
|
|
|
- name: "Install dependencies with Composer"
|
|
uses: "ramsey/composer-install@v1"
|
|
with:
|
|
dependency-versions: "${{ matrix.dependencies }}"
|
|
|
|
- name: "Run PHPUnit"
|
|
run: "vendor/bin/phpunit"
|
|
|
|
upload_coverage:
|
|
name: "Upload coverage to Codecov"
|
|
runs-on: "ubuntu-20.04"
|
|
needs:
|
|
- "phpunit"
|
|
|
|
steps:
|
|
- name: "Checkout"
|
|
uses: "actions/checkout@v2"
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: "Download coverage files"
|
|
uses: "actions/download-artifact@v2"
|
|
with:
|
|
path: "reports"
|
|
|
|
- name: "Upload to Codecov"
|
|
uses: "codecov/codecov-action@v1"
|
|
with:
|
|
directory: reports
|