Skip to content

actions: Trusted Publishing #91

actions: Trusted Publishing

actions: Trusted Publishing #91

Workflow file for this run

name: build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.x.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: |
dotnet build --no-restore
dotnet build --no-restore -c Release
- name: Test
run: |
dotnet run --project ./cli --TEST
##dotnet run --project ./cli --markdown >> $GITHUB_STEP_SUMMARY
dnx -y FUnit.Run -- -md >> $GITHUB_STEP_SUMMARY