Some tidying up #1657
Workflow file for this run
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 | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| branches: | |
| - 'master' | |
| pull_request: | |
| branches: | |
| - 'master' | |
| jobs: | |
| test: | |
| name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - '1.10' | |
| - '1.11' | |
| - '1.12' | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| - macos-15 # This is the Intel (x64) runner | |
| arch: | |
| - x64 | |
| include: | |
| # Keep Windows x86 coverage if needed | |
| - os: windows-latest | |
| version: '1.10' | |
| arch: x86 | |
| # macOS ARM64 (Apple Silicon) | |
| - os: macos-latest | |
| version: '1' | |
| arch: aarch64 | |
| exclude: | |
| # Clean up any redundant combinations here | |
| - os: macos-15 | |
| arch: x86 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| show-versioninfo: true | |
| version: ${{ matrix.version }} | |
| arch: ${{ matrix.arch }} | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| with: | |
| ignore-no-cache: true | |
| - uses: julia-actions/julia-runtest@latest | |
| docs: | |
| name: Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| show-versioninfo: true | |
| version: '1' | |
| - uses: julia-actions/julia-docdeploy@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |