Skip to content

Commit 9505ef9

Browse files
Copilotrashidi
andauthored
Add copilot-setup-steps.yml with Java 25 and Gradle setup
Agent-Logs-Url: https://github.com/rashidi/spring-boot-tutorials/sessions/deb0b319-e002-45d2-86ac-320bfd9106ae Co-authored-by: rashidi <380073+rashidi@users.noreply.github.com>
1 parent 9b10d9f commit 9505ef9

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: "Copilot Setup Steps"
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths:
7+
- .github/workflows/copilot-setup-steps.yml
8+
pull_request:
9+
paths:
10+
- .github/workflows/copilot-setup-steps.yml
11+
12+
jobs:
13+
copilot-setup-steps:
14+
runs-on: ubuntu-latest
15+
16+
permissions:
17+
contents: read
18+
19+
steps:
20+
- name: Checkout code
21+
uses: actions/checkout@v6
22+
23+
- name: Set up JDK 25
24+
uses: actions/setup-java@v5
25+
with:
26+
java-version: "25"
27+
distribution: "temurin"
28+
29+
- name: Setup Gradle
30+
uses: gradle/actions/setup-gradle@v6

0 commit comments

Comments
 (0)