mirror of
https://github.com/anthonyaxenov/atol-online.git
synced 2024-11-23 03:54:42 +00:00
24 lines
498 B
YAML
24 lines
498 B
YAML
|
name: Composer and phpunit tests
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
|
||
|
- name: Validate composer.json and composer.lock
|
||
|
run: composer validate
|
||
|
|
||
|
- name: Install composer dependencies
|
||
|
run: composer install --prefer-dist --no-progress --no-suggest
|
||
|
|
||
|
- name: Run phpunit tests
|
||
|
uses: php-actions/phpunit@v1.0.0
|
||
|
with:
|
||
|
# Configuration file location
|
||
|
config: ./phpunit.xml
|