Skip to content

feat: add variation Id to evaluation detail (#23) #84

feat: add variation Id to evaluation detail (#23)

feat: add variation Id to evaluation detail (#23) #84

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: build and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Restore Packages
run: dotnet restore
- name: Build Solution
run: dotnet build -c Release --no-restore
- name: Run Tests
run: dotnet test -c Release --no-build --verbosity normal