Skip to content

Commit

Permalink
Poor mans solution filter (#1003)
Browse files Browse the repository at this point in the history
* does this mess up build pipeline?

* .

* .
  • Loading branch information
rogeralsing authored May 29, 2021
1 parent 2f26632 commit 76a6102
Show file tree
Hide file tree
Showing 5 changed files with 342 additions and 84 deletions.
68 changes: 0 additions & 68 deletions .github/workflows/build-myget.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ jobs:
dotnet-version: '3.1.x'

- name: Build
run: dotnet build -c Release
run: dotnet build ProtoActor.sln -c Release

- name: Run tests netcoreapp3.1
env:
ConnectionStrings__MongoDB: mongodb://localhost:${{ job.services.mongodb.ports[27017] }}/ProtoMongo
ConnectionStrings__Redis: localhost:${{ job.services.redis.ports[6379] }},syncTimeout=10000
run: |
dotnet test -c Release --framework netcoreapp3.1 --no-build
dotnet test ProtoActor.sln -c Release --framework netcoreapp3.1 --no-build
- name: Run tests net5.0
env:
ConnectionStrings__MongoDB: mongodb://localhost:${{ job.services.mongodb.ports[27017] }}/ProtoMongo
ConnectionStrings__Redis: localhost:${{ job.services.redis.ports[6379] }},syncTimeout=10000
run: |
dotnet test -c Release --framework net5.0 --no-build
dotnet test ProtoActor.sln -c Release --framework net5.0 --no-build
Loading

0 comments on commit 76a6102

Please sign in to comment.