mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-15 17:37:39 +00:00
Jens True
1e381bfab7
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
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 |