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 12adbc3 commit 55a4e99Copy full SHA for 55a4e99
.github/workflows/build-ramdisk.yml
@@ -31,9 +31,14 @@ jobs:
31
run: |
32
cp -r $GITHUB_WORKSPACE/* /dev/shm/ramdisk/project
33
34
- # Step 5: Build and Test from the ramdisk
+ # Step 5: Debug Directory Contents
35
+ - name: Debug Directory
36
+ run: |
37
+ ls -R /dev/shm/ramdisk/project
38
+
39
+ # Step 6: Build and Test from the ramdisk
40
- name: Build and Test
41
42
cd /dev/shm/ramdisk/project
- dotnet build --configuration Debug --output /dev/shm/ramdisk/build
- dotnet test --no-build /dev/shm/ramdisk/build --verbosity normal
43
+ dotnet build Clean.Architecture.sln --configuration Debug
44
+ dotnet test Clean.Architecture.sln --
0 commit comments