From 623c5915c76d62230f70a5fae62b067416218164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Tu=CC=88ken?= Date: Sat, 28 Dec 2019 01:30:28 +0300 Subject: [PATCH 1/3] Revert "Delete main.yml" This reverts commit a04fbeb1b52fa5e4d16880e58f78152b596e39c6. --- .github/workflows/main.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000..123cc3ea62 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,24 @@ +name: 'Main' +on: + pull_request: + paths: + - 'framework/**' + - 'modules/**' + branches: + - dev +jobs: + build-test: + runs-on: windows-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-dotnet@master + with: + dotnet-version: '3.0.100' + + - name: Build All + run: .\build-all.ps1 + shell: pwsh + + - name: Test All + run: .\test-all.ps1 + shell: pwsh From 505cd17467c006acfe835ae46545159245d2e8f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Tu=CC=88ken?= Date: Sat, 28 Dec 2019 01:31:10 +0300 Subject: [PATCH 2/3] ci check all push and pr --- .github/workflows/main.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 123cc3ea62..d2412d0b08 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,8 +4,12 @@ on: paths: - 'framework/**' - 'modules/**' - branches: - - dev + - 'templates/**' + push: + paths: + - 'framework/**' + - 'modules/**' + - 'templates/**' jobs: build-test: runs-on: windows-latest From c30c4aa603306fc8c857dec92af0dde9341e9c46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Tu=CC=88ken?= Date: Sat, 28 Dec 2019 06:59:10 +0300 Subject: [PATCH 3/3] update dotnet version --- .github/workflows/main.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d2412d0b08..a75e3f2cf5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,15 +1,15 @@ -name: 'Main' +name: "Main" on: pull_request: paths: - - 'framework/**' - - 'modules/**' - - 'templates/**' + - "framework/**" + - "modules/**" + - "templates/**" push: paths: - - 'framework/**' - - 'modules/**' - - 'templates/**' + - "framework/**" + - "modules/**" + - "templates/**" jobs: build-test: runs-on: windows-latest @@ -17,8 +17,8 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-dotnet@master with: - dotnet-version: '3.0.100' - + dotnet-version: "3.1.100" + - name: Build All run: .\build-all.ps1 shell: pwsh