Skip to content

feat: Add OpenFeature.Extensions.Hosting package #165

feat: Add OpenFeature.Extensions.Hosting package

feat: Add OpenFeature.Extensions.Hosting package #165

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
jobs:
unit-tests-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
- name: Run Tests
run: dotnet test --logger GitHubActions
unit-tests-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
- name: Run Tests
run: dotnet test --logger GitHubActions