forked from ravendb/ravendb
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (51 loc) · 1.39 KB
/
FastTests.yml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: tests/fast
on:
push:
branches:
- v6.0
pull_request:
branches:
- v6.0
env:
DOTNET_VERSION: 8.0.204
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Test - Release
run: dotnet test --configuration Release --no-restore
env: # Or as an environment variable
RAVEN_LICENSE: ${{ secrets.RAVEN_LICENSE }}
RAVEN_MAX_RUNNING_TESTS: 1
working-directory: ./test/FastTests
debug:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Test - Debug
run: dotnet test --configuration Debug --no-restore
env: # Or as an environment variable
RAVEN_LICENSE: ${{ secrets.RAVEN_LICENSE }}
RAVEN_MAX_RUNNING_TESTS: 1
working-directory: ./test/FastTests