mirror of
https://github.com/ivuorinen/actions.git
synced 2026-01-26 11:34:00 +00:00
23 lines
497 B
YAML
23 lines
497 B
YAML
---
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-action.json
|
|
name: PHP Tests
|
|
description: Run PHPUnit tests on the repository
|
|
author: Ismo Vuorinen
|
|
|
|
branding:
|
|
icon: check-circle
|
|
color: green
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Set Git Config
|
|
uses: ivuorinen/actions/set-git-config@main
|
|
|
|
- name: Composer Install
|
|
uses: ivuorinen/actions/php-composer@main
|
|
|
|
- name: Run PHPUnit Tests
|
|
shell: bash
|
|
run: vendor/bin/phpunit --verbose
|