File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 3636 apt install --yes --no-install-recommends ca-certificates
3737
3838 apt install --yes --no-install-recommends dotnet8
39-
40- # Trust ASP.NET Core HTTPS development certificate so that GRPC server can be contacted through HTTPS.
41- # HTTPS connection is used in end-to-end GRPC tests.
42- dotnet dev-certs https
43- sudo -E dotnet dev-certs https --trust --format PEM
44- sudo update-ca-certificates
4539
4640 - name : Restore nuget dependencies
4741 run : dotnet restore
5549 redis-server --daemonize yes
5650
5751 - name : Run tests
58- run : dotnet test
52+ run : |
53+ # Trust ASP.NET Core HTTPS development certificate so that GRPC server can be contacted through HTTPS.
54+ # HTTPS connection is used in end-to-end GRPC tests.
55+ dotnet dev-certs https
56+ sudo -E dotnet dev-certs https --format PEM
57+ sudo update-ca-certificates
58+
59+ dotnet test
5960
6061 buildAndTest-windows :
6162 name : Build (Windows)
You can’t perform that action at this time.
0 commit comments