Fix search path for worker in app tests #349
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
name: .NET | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
os: [windows-2022, ubuntu-24.04, macos-14] | |
steps: | |
- name: Install OS dependencies | |
if: matrix.os == 'ubuntu-24.04' | |
run: sudo apt-get install -y fonts-liberation2 fonts-noto-core fonts-noto-cjk | |
- uses: actions/checkout@v4 | |
- name: Setup .NET 9 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.0.x | |
- name: Install workloads | |
run: dotnet workload install macos | |
- name: Build | |
run: dotnet run --project NAPS2.Tools -- build debug -v | |
- name: Test | |
run: dotnet run --project NAPS2.Tools -- test -v --nogui |