Skip to content

💥 Remove FetchInfo and FetchResult requests #19

💥 Remove FetchInfo and FetchResult requests

💥 Remove FetchInfo and FetchResult requests #19

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
- "releases/*"
jobs:
build-lint-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: windows-latest
checkTarget: true
runs-on: ${{ matrix.runsOn || matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
- name: Check format
if: ${{ matrix.checkTarget }}
run: dotnet format --verify-no-changes
- name: Build
run: dotnet build
- name: Build docs
run: |
dotnet tool update -g docfx
docfx src/NexusRpc/docs/docfx.json --warningsAsErrors
- name: Test
run: dotnet test --logger "console;verbosity=detailed"