diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index d0414ed..478c465 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -10,8 +10,10 @@ jobs: include: - os: ubuntu-latest target: x86_64 - - os: macos-latest + - os: macos-13 target: x86_64 + - os: macos-14 + target: arm64 steps: - name: checkout @@ -21,7 +23,8 @@ jobs: - name: symlink gfortran (macOS) if: runner.os == 'macOS' run: | - ln -s /usr/local/bin/gfortran-12 /usr/local/bin/gfortran + ln -sf /usr/local/bin/gfortran-12 /usr/local/bin/gfortran # MacOS 13 + ln -sf /opt/homebrew/bin/gfortran-12 /usr/local/bin/gfortran # MacOS 14 gfortran --version - uses: dtolnay/rust-toolchain@stable - uses: actions/setup-python@v4