Do not use solver for forks #29
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
name: Build and Run Tests [gradle] | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Runs a single command using the runners shell | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3.5.0 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
cache: "gradle" | |
# Runs a set of commands using the runners shell | |
- name: Build and run tests | |
run: ./gradlew build --no-daemon |