Skip to content

Commit b029ce9

Browse files
committed
Fix GitHub Actions workflow: update setup-dotnet to v4 and remove broken artifact pattern
1 parent 7df9c05 commit b029ce9

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,10 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v4
19-
- uses: actions/setup-dotnet@v1
19+
- uses: actions/setup-dotnet@v4
2020
with:
2121
dotnet-version: '10.0.x'
2222
- run: dotnet build Cleipnir.ResilientFunctions.sln
23-
- uses: actions/upload-artifact@v4
24-
with:
25-
name: build
26-
path: .
2723

2824
test:
2925
needs: build
@@ -36,12 +32,11 @@ jobs:
3632
- Stores/PostgreSQL/Cleipnir.ResilientFunctions.PostgreSQL.Tests
3733
- Stores/SqlServer/Cleipnir.ResilientFunctions.SqlServer.Tests
3834
steps:
39-
- uses: actions/download-artifact@v4
40-
with:
41-
name: build
42-
- uses: actions/setup-dotnet@v1
35+
- uses: actions/checkout@v4
36+
- uses: actions/setup-dotnet@v4
4337
with:
4438
dotnet-version: '10.0.x'
39+
- run: dotnet build Cleipnir.ResilientFunctions.sln
4540
- run: docker compose up -d
4641
- run: dotnet run --project ./Stores/EnsureDatabaseConnections/EnsureDatabaseConnections.csproj --no-build
4742
- run: dotnet test ./${{ matrix.test-project }} --no-build --logger "console;verbosity=detailed"

0 commit comments

Comments
 (0)