We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 869efcb commit 19e67d0Copy full SHA for 19e67d0
1 file changed
.github/workflows/github-actions-ci.yaml
@@ -18,7 +18,7 @@ jobs:
18
ports:
19
- 1433:1433
20
volumes:
21
- - ${{ runner.temp }}/other_databases_path:/other_databases_path
+ - /tmp/other_databases_path:/tmp/other_databases_path
22
steps:
23
- uses: actions/checkout@v4
24
@@ -51,7 +51,7 @@ jobs:
51
run: dotnet test PosInformatique.Testing.Databases.sln --configuration Release --no-build --logger "junit;LogFilePath=./TestResults/junit.xml"
52
env:
53
SQL_SERVER_UNIT_TESTS_CONNECTION_STRING: "Data Source=localhost,1433;Database=master;User Id=sa;Password=P@ssw0rd12345!;TrustServerCertificate=True;"
54
- SQL_SERVER_UNIT_TESTS_OTHER_DATA_PATH: "/other_databases_path"
+ SQL_SERVER_UNIT_TESTS_OTHER_DATA_PATH: "/tmp/other_databases_path"
55
56
- name: Publish tests report
57
uses: dorny/test-reporter@v1
0 commit comments