Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
1 result

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 134 B
    image: maven:latest
    
    build:
        stage: build
        script:
            - mvn compile
    
    test:
        stage: test
        script: 
            - mvn test