Skip to content

ensure type stability of dataframe columns during parsing (except all… #4

ensure type stability of dataframe columns during parsing (except all…

ensure type stability of dataframe columns during parsing (except all… #4

Workflow file for this run

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