Skip to content

Call the kaleido binary directly (fixes permission errors on Windows and Julia 1.10) #48

Call the kaleido binary directly (fixes permission errors on Windows and Julia 1.10)

Call the kaleido binary directly (fixes permission errors on Windows and Julia 1.10) #48

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version: ['1.6', '1']
julia-arch: [x64]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- name: Install Dependencies (Ubuntu)
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get -y update
sudo apt-get -y install poppler-utils
sudo fc-cache -vr
- name: Install Dependencies (macOS)
if: startsWith(matrix.os, 'macOS')
run: |
brew install poppler
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
annotate: true