We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92f6010 commit c048a56Copy full SHA for c048a56
1 file changed
.github/workflows/CICD-TEST.yml
@@ -7,12 +7,17 @@ on:
7
8
jobs:
9
build:
10
- runs-on: ubuntu-latest # 실행할 runner 환경 지정
+ runs-on: windows-latest # 실행할 runner 환경 지정
11
12
steps:
13
- name: Checkout code
14
uses: actions/checkout@v2
15
16
+ - name: Setup .NET
17
+ uses: actions/setup-dotnet@v1
18
+ with:
19
+ dotnet-version: 4.7.x
20
+
21
- name: Build and Test
22
run: |
23
cd CSharpTest
@@ -49,4 +54,4 @@ jobs:
49
54
- name: Deploy to production
50
55
if: startsWith(steps.merge_message.outputs.message, 'Release')
51
56
52
- echo "End All Actions"
57
+ echo "End All Actions."
0 commit comments