Skip to content
Snippets Groups Projects
Select Git revision
  • 1307f55e91b236ac3649b6e9bcf8c0a930cfeb54
  • 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 193 B
    image: php:latest
    
    cache:
        paths:
            - vendor
    
    build:
        stage: build
        script:
            - ./tools/composer install
    
    test:
        stage: test
        script:
            - ./tools/composer test