mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-14 10:36:09 +01:00
19 lines
428 B
YAML
19 lines
428 B
YAML
name: CI
|
|
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Validate composer.json and composer.lock
|
|
run: composer validate
|
|
|
|
- name: Install dependencies
|
|
run: composer install --prefer-dist --no-progress --no-suggest
|
|
|
|
- name: Test CGL
|
|
run: ./vendor/bin/phpcs
|
|
|
|
- name: Execute PHPUnit Tests
|
|
run: ./vendor/bin/phpunit
|