We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9627ae1 commit 5ab5e84Copy full SHA for 5ab5e84
1 file changed
workflows/copilot-setup-steps.yml
@@ -0,0 +1,27 @@
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
10
11
12
+jobs:
13
+ copilot-setup-steps:
14
+ runs-on: ubuntu-latest
15
+ permissions:
16
+ contents: read
17
18
+ steps:
19
+ - name: Checkout code
20
+ uses: actions/checkout@v4
21
+ with:
22
+ lfs: true # jeśli używasz Git LFS
23
24
+ - name: Setup .NET 9 SDK
25
+ uses: actions/setup-dotnet@v3
26
27
+ dotnet-version: '9.0.x'
0 commit comments