Add macos-15 and macos-26 runners, remove macos-12 (no longer availab… #56
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: CI | |
| # controls when action will run | |
| on: | |
| # triggers workflow on push events | |
| push: | |
| # allows workflow to be triggered manually from Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-14, macos-15, macos-26, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Install Octave | |
| uses: ./. | |
| - name: Octave ${{ env.ML_VER }} Installed | |
| run: $ML_CMD ver |