From 81970d9b5c56084e3f25c03c88345ce680b9eed5 Mon Sep 17 00:00:00 2001 From: Tian Liao Date: Wed, 19 Jun 2024 15:08:34 +0800 Subject: [PATCH] init ci action --- .github/workflows/pipeline-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pipeline-ci.yml diff --git a/.github/workflows/pipeline-ci.yml b/.github/workflows/pipeline-ci.yml new file mode 100644 index 00000000..9e2e553b --- /dev/null +++ b/.github/workflows/pipeline-ci.yml @@ -0,0 +1,19 @@ +name: Windows Calculator Continuous Integration Pipeline +on: + push: + branches: [main, release/**, feature/**] + pull_request: + branches: [main, release/**, feature/**] +jobs: + buildWinCalc: + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + - uses: nuget/setup-nuget@v2 + name: Use NuGet 6.x + with: + nuget-version: '6.x' + - run: nuget restore ./src/Calculator.sln +# testCalc: +# needs: buildWinCalc +# runs-on: windows-latest