-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add github workflow ci.yml, remove old pipelines
- Loading branch information
1 parent
34a1895
commit ac5474b
Showing
3 changed files
with
53 additions
and
300 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: FeatureManagement-Dotnet CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- preview | ||
- release/* | ||
pull_request: | ||
branches: | ||
- main | ||
- preview | ||
- release/* | ||
|
||
permissions: | ||
security-events: write | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install .NET | ||
run: pwsh build/install-dotnet.ps1 -RestoreOnly | ||
|
||
- name: Restore | ||
run: pwsh build.ps1 -RestoreOnly | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: 'csharp' | ||
|
||
- name: Dotnet Build | ||
run: pwsh build.ps1 | ||
|
||
- name: Dotnet Pack | ||
run: pwsh pack.ps1 | ||
|
||
- name: Dotnet Test | ||
run: pwsh test.ps1 | ||
|
||
- name: Publish Test Results | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Unit Test Results | ||
path: ${{ github.workspace }}/tests/**/*.trx | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.