Skip to content

Microsoft di and roslyn compiler #10

Microsoft di and roslyn compiler

Microsoft di and roslyn compiler #10

Workflow file for this run

# 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: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: |
cd src
dotnet restore spark-ci.slnf
- name: Build
run: |
cd src
dotnet build --no-restore spark-ci.slnf
- name: Test
run: |
cd src
dotnet test --no-build --verbosity normal spark-ci.slnf