Skip to content

RavenDB-23473 Added support for reading the persisted embedding sourc… #27

RavenDB-23473 Added support for reading the persisted embedding sourc…

RavenDB-23473 Added support for reading the persisted embedding sourc… #27

Workflow file for this run

name: tests/fast
on:
push:
branches:
- v7.0
pull_request:
branches:
- v7.0
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- 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@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- 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