atol-online/.github/workflows/tests.yml

27 lines
507 B
YAML
Raw Normal View History

name: Build
2020-01-11 06:30:25 +00:00
on:
push:
branches:
- master
2020-01-11 06:30:25 +00:00
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