trueskill/.woodpecker.yml

17 lines
360 B
YAML
Raw Normal View History

2024-07-31 07:27:13 +00:00
when:
- event: [push, tag]
2024-05-06 09:25:27 +00:00
steps:
- name: requirements
2024-02-01 07:51:06 +00:00
image: composer
commands:
- composer install --no-dev
2024-05-06 09:25:27 +00:00
- name: run
2024-02-01 07:51:06 +00:00
image: php:cli-bookworm
commands:
- php examples/3teams.php
- php examples/basic.php
2024-07-31 07:27:13 +00:00
- name: test
2024-02-01 07:51:06 +00:00
image: composer
commands:
- composer install
2024-05-06 09:25:27 +00:00
- vendor/bin/phpunit tests --no-coverage