fix optinoal condition #939
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: | |
- 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: | |
- x64 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-runtest@latest | |
# Capture failure for optional jobs and continue | |
- name: Handle optional failures | |
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 |