Skip to content

Commit a7e27ce

Browse files
committed
actions
1 parent 1c717d5 commit a7e27ce

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@v2
42+
uses: github/codeql-action/init@v3
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,7 +50,7 @@ jobs:
5050
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@v2
53+
uses: github/codeql-action/autobuild@v3
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 https://git.io/JvXDl
@@ -64,4 +64,4 @@ jobs:
6464
# make release
6565

6666
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@v2
67+
uses: github/codeql-action/analyze@v3

.github/workflows/nuget.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,20 @@ jobs:
2525
- name: Build
2626
run: dotnet build --configuration Release
2727

28-
# - name: Test
29-
# run: dotnet test --configuration Release
28+
- name: Test
29+
run: dotnet test --configuration Release
3030

31+
- name: NDepend
32+
uses: ndepend/ndepend-action@v1
33+
with:
34+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35+
license: ${{ secrets.NDEPENDLICENSE }}
36+
coveragefolder: ${{ github.workspace }}/coverage/
37+
baseline: main_recent
38+
retention-days: 15
39+
#stopIfQGFailed: true
40+
41+
3142
- name: Pack
3243
run: dotnet pack --configuration Release -p:IncludeSymbols=false -p:SymbolPackageFormat=snupkg -o "packages"
3344

0 commit comments

Comments
 (0)