Skip to content

Commit 4982d78

Browse files
unify
1 parent cfab0de commit 4982d78

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ jobs:
4040
run: ulimit -n 1024
4141
- name: Build and test
4242
run: |
43+
dotnet nuget add source --username user --password ${GITHUB_TOKEN} --store-password-in-clear-text --name github https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
4344
dotnet restore
44-
make build
45-
make test
45+
dotnet test -c Release test/Confluent.Kafka.UnitTests/Confluent.Kafka.UnitTests.csproj
4646
4747
windows-build:
4848
runs-on: windows-latest
@@ -55,7 +55,8 @@ jobs:
5555
6.0.x
5656
8.0.x
5757
- name: Build and test
58-
run: |
58+
run: |
59+
dotnet nuget add source --username user --password ${GITHUB_TOKEN} --store-password-in-clear-text --name github https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
5960
dotnet restore
6061
dotnet test -c Release test/Confluent.Kafka.UnitTests/Confluent.Kafka.UnitTests.csproj
6162

0 commit comments

Comments
 (0)