Skip to content

Quality and robustness #20

Quality and robustness

Quality and robustness #20

Workflow file for this run

name: Ubuntu
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore ./FindExecutable.sln
- name: Build
run: dotnet build --configuration ${{ matrix.configuration }} --no-restore ./FindExecutable.csproj
- name: Run Test
shell: pwsh
run: |
cd ((([object[]](gci .\bin\${{matrix.configuration}}\))[-1]).FullName)
dotnet ./FindExecutable.dll