mirror of
https://github.com/furyfire/trueskill.git
synced 2025-04-29 08:39:25 +00:00
17 lines
360 B
YAML
17 lines
360 B
YAML
|
when:
|
||
|
- event: [push, tag]
|
||
|
steps:
|
||
|
- name: requirements
|
||
|
image: composer
|
||
|
commands:
|
||
|
- composer install --no-dev
|
||
|
- name: run
|
||
|
image: php:cli-bookworm
|
||
|
commands:
|
||
|
- php examples/3teams.php
|
||
|
- php examples/basic.php
|
||
|
- name: test
|
||
|
image: composer
|
||
|
commands:
|
||
|
- composer install
|
||
|
- vendor/bin/phpunit tests --no-coverage
|