Skip to content

Fix Arrow deserialization for FlatArray #85

Fix Arrow deserialization for FlatArray

Fix Arrow deserialization for FlatArray #85

Workflow file for this run

name: CI
on:
push:
branches:
- main
- /^release-.*$/
paths:
- '.github/workflows/CI.yml'
- 'test/**'
- 'src/**'
- 'Project.toml'
pull_request:
types: [opened, synchronize, reopened]
paths:
- '.github/workflows/CI.yml'
- 'test/**'
- 'src/**'
- 'Project.toml'
jobs:
test:
name: Julia ${{ matrix.version }} - Flux ${{ matrix.flux-version }} - ${{ github.event_name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
flux-version:
- '0.12'
- '0.13'
version:
- '1' # current release
- '1.6' # earliest supported version
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: x64
- name: "Install Flux"
shell: julia --color=yes --project=. {0}
run: |
using Pkg
Pkg.add([Pkg.PackageSpec(; name="Flux", version="${{ matrix.flux-version }}")])
- uses: actions/cache@v2
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-artifacts-${{ hashFiles('**/Project.toml') }}
restore-keys: ${{ runner.os }}-test-artifacts
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
with:
file: lcov.info