remove build step from ci #3
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 | |
| - pull_request | |
| jobs: | |
| test: | |
| name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | |
| continue-on-error: ${{ matrix.version == 'nightly' || matrix.version == 'pre' }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - '1.6' | |
| - '1' | |
| - 'pre' | |
| - 'nightly' | |
| os: | |
| - ubuntu-latest | |
| - macOS-latest | |
| - windows-latest | |
| arch: | |
| - '' | |
| exclude: | |
| - os: macos-latest # Apple Silicon | |
| version: '1.6' | |
| arch: '' | |
| include: | |
| - os: macos-latest # Intel | |
| version: '1.6' | |
| arch: 'x64' | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: julia-actions/setup-julia@latest | |
| with: | |
| version: ${{ matrix.version }} | |
| arch: ${{ (matrix.arch == '') && runner.arch || matrix.arch }} | |
| - uses: julia-actions/julia-buildpkg@latest | |
| - uses: julia-actions/julia-runtest@latest | |
| - name: Handle optional failures and continue without failing the workflow | |
| if: ${{ failure() }} | |
| run: | | |
| if [[ "${{ matrix.version }}" == "nightly" || "${{ matrix.version }}" == "pre" ]]; then | |
| echo "::warning::Optional matrix job failed for ${{ matrix.version }}." | |
| echo "optional_fail=true" >> "${GITHUB_OUTPUT}" | |
| exit 0 # Ignore the error to keep the green checkmark going | |
| fi | |
| exit 1 # If it's not an optional job, fail the job |