RavenDB-7070 Fixing build error because of referencing Microsoft.Bcl.… #121
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests/fast | |
on: | |
push: | |
branches: | |
- v6.0 | |
pull_request: | |
branches: | |
- v6.0 | |
env: | |
DOTNET_VERSION: 8.0.202 | |
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 |