Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Gradle commands to use the Gradle Wrapper #58

Open
yeikel opened this issue Mar 7, 2023 · 1 comment · May be fixed by #115
Open

Change Gradle commands to use the Gradle Wrapper #58

yeikel opened this issue Mar 7, 2023 · 1 comment · May be fixed by #115
Labels

Comments

@yeikel
Copy link
Contributor

yeikel commented Mar 7, 2023

Example:

name: Java CI

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Build with gradle
        run: gradle test

Unix runners:

name: Java CI

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Build with gradle
        run: ./gradlew test

Windows Runners:

 name: Java CI

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Build with gradle
        run: gradlew test

Same as #57 but with the Gradle Wrapper

@timtebeek
Copy link
Contributor

Hope you don't mind I unassigned you @yeikel
I want to open this issue back up again to anyone to pick up.
Feel free to open up a draft pull request if you'd like to contribute!

@mccartney mccartney linked a pull request Nov 17, 2024 that will close this issue
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Recipes Wanted
Development

Successfully merging a pull request may close this issue.

2 participants