Skip to content

+ Added default parameter #38

+ Added default parameter

+ Added default parameter #38

Workflow file for this run

name: CI and Build Package
on:
push:
branches: [ "main" ]
jobs:
windows64:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore src/FlowCommandLine/FlowCommandLine.sln
- name: Build
run: dotnet build --configuration Release src/FlowCommandLine/FlowCommandLine.sln
- name: Tests
run: dotnet test --configuration Release src/FlowCommandLine/FlowCommandLine.sln
- name: Pack package
run: dotnet pack --configuration Release --no-build --output . src/FlowCommandLine/FlowCommandLine.csproj
- uses: actions/upload-artifact@v4
with:
path: FlowCommandLine.*.nupkg