Skip to content
Merged
Changes from 4 commits
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
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, macos-latest, windows-latest]
runs-on: [ubuntu-latest, macos-13, windows-latest]
session: [dist, test]

name: ${{ matrix.session }} on ${{ matrix.runs-on }}
Expand All @@ -30,10 +30,12 @@ jobs:
- uses: actions/checkout@v4
- uses: awvwgk/setup-fortran@main
id: setup-fortran
if: runner.os != 'Windows' # We aren't using this yet, and takes 4 mins to setup
if: runner.os != 'Windows'
# We aren't using this yet, and takes 4 mins to setup on Windows
# On macOS this causes abut to be hit on macos-13+ and CMake
with:
compiler: gcc
version: 11
version: 12
- uses: yezz123/setup-uv@v4
- uses: wntrblm/nox@2024.04.15
- run: nox -s ${{ matrix.session }}
Expand Down