ci: macos-latest is changing to macos-14 ARM runners #184
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: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: 3 | |
jobs: | |
checks: | |
runs-on: ${{ matrix.runs-on }} | |
strategy: | |
fail-fast: false | |
matrix: | |
runs-on: [ubuntu-latest, macos-13, windows-latest] | |
session: [dist, test] | |
name: ${{ matrix.session }} on ${{ matrix.runs-on }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: awvwgk/setup-fortran@main | |
id: setup-fortran | |
if: runner.os == 'Linux' | |
# 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 | |
- uses: yezz123/setup-uv@v4 | |
- uses: wntrblm/nox@2024.04.15 | |
- run: nox -s ${{ matrix.session }} | |
pass: | |
if: always() | |
needs: [checks] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |