Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ jobs:
8.0.x
7.0.x
6.0.x
cache: true
cache-dependency-path: |
Directory.Packages.props
**/*.csproj

- name: Restore dependencies
run: dotnet restore ProtoActor.sln

- name: Run tests ${{ matrix.test }}
timeout-minutes: 15
Expand Down Expand Up @@ -73,6 +80,13 @@ jobs:
8.0.x
7.0.x
6.0.x
cache: true
cache-dependency-path: |
Directory.Packages.props
**/*.csproj

- name: Restore dependencies
run: dotnet restore ProtoActor.sln
- name: Run tests ${{ matrix.test }}
timeout-minutes: 15
run: |
Expand All @@ -92,7 +106,14 @@ jobs:
8.0.x
7.0.x
6.0.x

cache: true
cache-dependency-path: |
Directory.Packages.props
**/*.csproj

- name: Restore dependencies
run: dotnet restore ProtoActor.sln

- name: Create and push NuGet package
run: |
dotnet pack ProtoActor.sln -c Release -o nuget -p:SymbolPackageFormat=snupkg -p:GenerateDocumentationFile=true -p:NoWarn=CS1591
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ jobs:
8.0.x
7.0.x
6.0.x
cache: true
cache-dependency-path: |
Directory.Packages.props
**/*.csproj

- name: Restore dependencies
run: dotnet restore ProtoActor.sln

- name: Build
run: dotnet build ProtoActor.sln -c Release
Expand Down Expand Up @@ -67,6 +74,13 @@ jobs:
8.0.x
7.0.x
6.0.x
cache: true
cache-dependency-path: |
Directory.Packages.props
**/*.csproj

- name: Restore dependencies
run: dotnet restore ProtoActor.sln

- name: Run tests ${{ matrix.test }}
timeout-minutes: 15
Expand Down Expand Up @@ -97,6 +111,13 @@ jobs:
8.0.x
7.0.x
6.0.x
cache: true
cache-dependency-path: |
Directory.Packages.props
**/*.csproj

- name: Restore dependencies
run: dotnet restore ProtoActor.sln
- name: Run tests ${{ matrix.test }}
timeout-minutes: 15
run: |
Expand Down
Loading