Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macOS-13]
os: [ubuntu-22.04, windows-latest, macos-15-intel]
steps:
- uses: actions/checkout@v4
- name: Setup .NET 6
Expand All @@ -28,6 +28,9 @@ jobs:
dotnet-version: '6.0.301'
- name: Restore dotnet tools
run: dotnet tool restore
- name: Install mono (Mac)
if: runner.os == 'macOS'
Comment thread
xperiandri marked this conversation as resolved.
run: brew install mono
- name: remove current fake runner tool
run: dotnet tool uninstall fake-cli
- name: Build fake runner
Expand Down
Loading