Skip to content
Snippets Groups Projects
Select Git revision
  • 5066f6b8008ae407d1513b116d7f78f5672a0ae1
  • 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 223 B
    image: composer
    
    cache:
        paths:
            - vendor
    
    build:
        stage: build
        script:
            - "$CI_PROJECT_DIR/tools/composer install"
    
    test:
        stage: test
        script:
            - "$CI_PROJECT_DIR/tools/composer test"