We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a5f2b2 commit d37e703Copy full SHA for d37e703
.github/workflows/test-linux.yml
@@ -0,0 +1,34 @@
1
+name: Build (Linux)
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ services:
14
+ rabbitmq:
15
+ image: rabbitmq:3.8.9-management
16
+ ports:
17
+ - 5672:5672
18
+ - 15672:15672
19
20
+ steps:
21
+ - uses: actions/checkout@v2
22
23
+ - name: Setup .NET Core
24
+ uses: actions/setup-dotnet@v1
25
+ with:
26
+ dotnet-version: 3.1.x
27
28
+ - name: Build
29
+ run: dotnet build --configuration Release
30
31
+ - name: Test
32
+ run: dotnet test --configuration Release --framework 'netcoreapp3.1' --no-build
33
+ env:
34
+ RABBITMQ_RABBITMQCTL_PATH: DOCKER:${{job.services.rabbitmq.id}}
.travis.yml
0 commit comments