We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9445c84 commit af35ef0Copy full SHA for af35ef0
1 file changed
.github/workflows/nuget-audit.yml
@@ -0,0 +1,19 @@
1
+name: NuGet Audit
2
+on:
3
+ workflow_dispatch:
4
+env:
5
+ DOTNET_NOLOGO: true
6
+jobs:
7
+ build:
8
+ name: Linux
9
+ runs-on: ubuntu-22.04
10
+ steps:
11
+ - name: Checkout
12
+ uses: actions/checkout@v4.2.2
13
+ - name: Setup .NET SDK
14
+ uses: actions/setup-dotnet@v4.1.0
15
+ with:
16
+ global-json-file: global.json
17
+ - name: Restore
18
+ id: restore
19
+ run: dotnet restore src
0 commit comments