We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e2a738 commit 8d67af6Copy full SHA for 8d67af6
.github/workflows/tests.yml
@@ -10,4 +10,12 @@ jobs:
10
working-directory: ./src
11
steps:
12
- uses: actions/checkout@v4
13
- - run: dotnet test
+ - name: Configure NuGet source
14
+ run: |
15
+ dotnet nuget add source --name ProCoSysOfficial \
16
+ --username statoildeveloper \
17
+ --password ${{ secrets.AZURE_ARTIFACTS_PAT }} \
18
+ --store-password-in-clear-text \
19
+ https://statoildeveloper.pkgs.visualstudio.com/_packaging/ProCoSysOfficial/nuget/v3/index.json
20
+ - name: Run tests
21
+ run: dotnet test
0 commit comments