Implement MOUNT/IMGMOUNT/BOOT/SUBST batch commands, FAT12/16/32 floppy support, multi-image disc switching, 8272A FDC emulation, CDDA, virtual images, write-back, Mscdex rework + IOCTL parity, correct BIOS/DOS layering via IFloppyDriveAccess, DOS path ... #5693
This file contains hidden or 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: Run tests | |
| # Trigger the workflow on PRs | |
| on: | |
| pull_request | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [macos-latest, windows-latest, ubuntu-latest] | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Test with dotnet | |
| working-directory: ./src | |
| run: dotnet test --configuration Release |