Skip to content

Actions node 12 => node 16 #188

Actions node 12 => node 16

Actions node 12 => node 16 #188

Workflow file for this run

name: CI - FastVision
on:
push:
paths-ignore:
- 'docs/**'
- 'FastTabular/**'
- 'FastText/**'
- 'FastTimeSeries/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- 'FastTabular/**'
- 'FastText/**'
- '*.md'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.6'
os:
- ubuntu-latest
- macOS-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- name: Dev FastAI
run: |
julia --color=yes --project=./FastVision -e 'using Pkg; pkg"dev ."'
shell: bash
- name: Dev test dependencies
run: |
julia --color=yes --project=./FastVision/test -e 'using Pkg; pkg"dev . ./FastVision ./FastMakie"'
shell: bash
- uses: julia-actions/julia-buildpkg@latest
with:
project: './FastVision/'
- name: Run tests
run: |
julia --color=yes --depwarn=yes --project=./FastVision/test -e 'include("FastVision/test/runtests.jl")'
continue-on-error: ${{ matrix.version == 'nightly' }}
shell: bash