Skip to content

Added support for "source", "project" and "dll" reference directives … #24

Added support for "source", "project" and "dll" reference directives …

Added support for "source", "project" and "dll" reference directives … #24

Workflow file for this run

name: Build and test
on:
push:
branches:
- main
pull_request:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build