This repository has been archived by the owner on Mar 3, 2024. It is now read-only.
Решетников Алексей, Магистратура ИТМО "Распределенные веб-сервисы", sampled index #3214
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Java CI with Gradle | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: self-hosted | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew build |