File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,17 +27,17 @@ jobs:
2727 VERSION=${GITHUB_REF#refs/tags/v}
2828 echo "PACKAGE_VERSION=$VERSION" >> $GITHUB_ENV
2929
30- # 4. Restore dependencies for the library
31- - name : Restore library dependencies
32- run : dotnet restore src/ CatBox.NET/CatBox.NET.csproj
30+ # 4. Restore dependencies
31+ - name : Restore dependencies
32+ run : dotnet restore CatBox.NET.sln
3333
34- # 5. Build the library
35- - name : Build library
36- run : dotnet build src/ CatBox.NET/CatBox.NET.csproj --configuration Release --no-restore
34+ # 5. Build solution
35+ - name : Build solution
36+ run : dotnet build CatBox.NET.sln --configuration Release --no-restore
3737
38- # 6. Run tests (pointing to your test project)
38+ # 6. Run tests
3939 - name : Run tests
40- run : dotnet test tests/ CatBox.Tests/CatBox.Tests.csproj --configuration Release --no-build
40+ run : dotnet test CatBox.NET.sln --configuration Release --no-build
4141
4242 # 7. Pack the NuGet package
4343 - name : Pack NuGet package
You can’t perform that action at this time.
0 commit comments