Skip to content

Repair build.

Repair build. #241

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'release/**'
paths-ignore:
- '**/*.md'
- '**/*.sln'
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- '**/*.md'
- '**/*.sln'
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
8.0.x
- name: Restore Dependencies
run: |
dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal --no-restore