Skip to content
Snippets Groups Projects
Select Git revision
  • 24e9d61361438b9c7f65d9e0d212c775c3c5ea88
  • main default protected
  • devel
  • 1.1.0
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
9 results

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 218 B
    image: php
    
    cache:
        paths:
            - vendor
    
    build:
        stage: build
        script:
            - "$CI_PROJECT_DIR/tools/composer install"
    
    test:
        stage: test
        script:
            - "$CI_PROJECT_DIR/tools/composer test"