XF_Index/.gitea/workflows/laravel.yaml
XiaoLFeng 12d634b593
All checks were successful
Tests / PHP (pull_request) Successful in 1m10s
处理自动化,测试
Signed-off-by: XiaoLFeng <gm@x-lf.cn>
2023-06-30 13:12:43 +08:00

34 lines
519 B
YAML

name: Tests
on:
push:
branches:
- master
- '*.x'
pull_request:
schedule:
- cron: '0 0 * * *'
permissions:
contents: read
jobs:
tests:
runs-on: centos
name: PHP
steps:
- name: '检查代码'
uses: https://github.com/actions/checkout@v3
- name: '安装PHP'
uses: XiaoLFeng/setup-php@v2
with:
coverage: none
tools: phpmd
- name: '运行PHPMD'
run: phpmd ./ text codesize
continue-on-error: true