mirror of
https://codeberg.org/vlw/php-xenum.git
synced 2025-09-13 20:23:41 +02:00
19 lines
No EOL
423 B
YAML
19 lines
No EOL
423 B
YAML
name: PHP xEnum CI
|
|
run-name: PHP xEnum CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build-test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
uses: php-actions/composer@v6
|
|
|
|
- name: Run PHPUnit Tests
|
|
uses: php-actions/phpunit@v3
|
|
with:
|
|
bootstrap: vendor/autoload.php
|
|
configuration: test/phpunit.xml |