-
Notifications
You must be signed in to change notification settings - Fork 2
26 lines (23 loc) · 805 Bytes
/
CI.yml
File metadata and controls
26 lines (23 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: CI
on: [push, pull_request]
jobs:
ununtu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: dotnet restore src
- name: build
run: dotnet build src /p:Configuration=Release /verbosity:minimal
- name: test
run: dotnet test src/FsNetMQ.Tests/ -f netcoreapp3.0 -- --fail-on-focused-tests --summary
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: dotnet restore src
- name: build
run: dotnet build src /p:Configuration=Release /verbosity:minimal
- name: test netcoreapp3.0
run: dotnet test src/FsNetMQ.Tests -f netcoreapp3.0 -- --fail-on-focused-tests --summary
- name: test net461
run: dotnet test src/FsNetMQ.Tests -f net461 -- --fail-on-focused-tests --summary