Add addParameterless option, fix spelling #412
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
jobs: | |
build: | |
name: windows-latest | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # for minver | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
- name: Execute build and run tests | |
run: | | |
dotnet build --configuration Release /nologo | |
dotnet test --configuration Release | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: AutoConstructor | |
path: artifacts/* |