From bdf020cf74248395ea709559f473ada08dd053e8 Mon Sep 17 00:00:00 2001 From: cheyyeary Date: Mon, 29 Aug 2022 11:41:31 -0700 Subject: [PATCH 1/3] proper directory. Added workflow for blockDownloadService --- .../blockDownloadService_workflow.yml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/blockDownloadService_workflow.yml diff --git a/.github/workflows/blockDownloadService_workflow.yml b/.github/workflows/blockDownloadService_workflow.yml new file mode 100644 index 0000000..fde549e --- /dev/null +++ b/.github/workflows/blockDownloadService_workflow.yml @@ -0,0 +1,22 @@ +name: dotnet build + +on: push + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + dotnet-version: ['6.0'] + + steps: + - uses: actions/checkout@v3 + - name: Setup .NET Core SDK ${{ matrix.dotnet-version }} + uses: actions/setup-dotnet@v2 + with: + dotnet-version: ${{ matrix.dotnet-version }} + - name: Install dependencies + run: cd blob-download-service/src/ && dotnet restore + - name: Build + run: cd blob-download-service/src/ && dotnet build --no-restore \ No newline at end of file From 09d1d96b297ca191a71f4021951393235d73212e Mon Sep 17 00:00:00 2001 From: cheyyeary Date: Mon, 29 Aug 2022 12:10:43 -0700 Subject: [PATCH 2/3] Corrected file name --- ...nloadService_workflow.yml => blobDownloadService_workflow.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{blockDownloadService_workflow.yml => blobDownloadService_workflow.yml} (100%) diff --git a/.github/workflows/blockDownloadService_workflow.yml b/.github/workflows/blobDownloadService_workflow.yml similarity index 100% rename from .github/workflows/blockDownloadService_workflow.yml rename to .github/workflows/blobDownloadService_workflow.yml From 02fad6e2ca0d860a835aec354a3d446e2a1edefc Mon Sep 17 00:00:00 2001 From: cheyyeary Date: Mon, 29 Aug 2022 12:17:05 -0700 Subject: [PATCH 3/3] adding license to file. --- .github/workflows/blobDownloadService_workflow.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/blobDownloadService_workflow.yml b/.github/workflows/blobDownloadService_workflow.yml index fde549e..31d713a 100644 --- a/.github/workflows/blobDownloadService_workflow.yml +++ b/.github/workflows/blobDownloadService_workflow.yml @@ -1,3 +1,6 @@ +# Copyright (c) 2022 Microsoft Corporation. All rights reserved. +# Software is licensed under the MIT License. See LICENSE in the project +# root for license information. name: dotnet build on: push