Skip to content

Support arguments in RazorMacro command (Requested by HonestAly) #406

Support arguments in RazorMacro command (Requested by HonestAly)

Support arguments in RazorMacro command (Requested by HonestAly) #406

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- '*'
push:
branches:
- 'develop'
jobs:
build:
runs-on: windows-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal