You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# You can define any steps you want, and they will run before the agent starts.
43
-
# If you do not check out your code, Copilot will do this for you.
44
42
steps:
45
43
- name: Checkout
46
44
uses: actions/checkout@v5
47
45
48
46
- name: Restore
49
47
run: ./restore.sh
50
48
51
-
- name: Export SQL Server connection string for the agent's session
52
-
run: echo "Test__SqlServer__DefaultConnection=Server=localhost;Database=master;User=SA;Password=${{ secrets.MSSQL_SA_PASSWORD }};Connect Timeout=60;ConnectRetryCount=0;Trust Server Certificate=true" >> "$GITHUB_ENV"
49
+
# - name: Export SQL Server connection string for the agent's session
50
+
# run: echo "Test__SqlServer__DefaultConnection=Server=localhost;Database=master;User=SA;Password=${MSSQL_SA_PASSWORD};Connect Timeout=60;ConnectRetryCount=0;Trust Server Certificate=true" >> "$GITHUB_ENV"
51
+
52
+
- name: Run tests (temporary)
53
+
env:
54
+
TEST__SQLSERVER__DEFAULTCONNECTION: Server=localhost;Database=master;User=SA;Password=P@ssw0rd12345!;Connect Timeout=60;ConnectRetryCount=0;Trust Server Certificate=true
55
+
run: |
56
+
./activate.sh
57
+
dotnet test test/EFCore.SqlServer.FunctionalTests --filter Microsoft.EntityFrameworkCore.Query.Translations.GuidTranslationsSqlServerTest
0 commit comments