We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b12e9f commit 10e610fCopy full SHA for 10e610f
.github/workflows/build-dotnet.yml
@@ -12,7 +12,7 @@ jobs:
12
- name: Detect .NET project
13
id: detect
14
run: |
15
- if ls dotnet/*.sln dotnet/*.csproj >/dev/null 2>&1; then
+ if ls dotnet/*.sln >/dev/null 2>&1 || ls dotnet/*.csproj >/dev/null 2>&1; then
16
echo "present=true" >> "$GITHUB_OUTPUT"
17
else
18
echo "present=false" >> "$GITHUB_OUTPUT"
.gitignore
@@ -50,6 +50,8 @@ modules.order
50
Module.symvers
51
Mkfile.old
52
dkms.conf
53
+!go/go.mod
54
+!go/go.sum
55
56
# debug information files
57
*.dwo
go/go.mod
@@ -0,0 +1,3 @@
1
+module github.com/cuihairu/epoch/go
2
+
3
+go 1.24
0 commit comments