Skip to content
Snippets Groups Projects
Select Git revision
  • 0b05b4090fb04c0d662635033e679d295e40d650
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

.gitlab-ci.yml

Blame
  • Forked from YAGOUBI Rim / Game of life Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .gitlab-ci.yml 280 B
    image: gradle:jdk16
    
    before_script:
      - export GRADLE_USER_HOME=`pwd`/.gradle
    
    cache:
      paths:
        - .gradle/wrapper
        - .gradle/caches
    
    java:
      stage: test
      script:
        - gradle test
      artifacts:
        when: always
        reports:
          junit: build/test-results/test/**/TEST-*.xml