Skip to content

Disable R installation and add julia tests for macos/windows #3

Disable R installation and add julia tests for macos/windows

Disable R installation and add julia tests for macos/windows #3

Workflow file for this run

name: Julia Testing
on: [push]
jobs:
julia:
matrix:

Check failure on line 5 in .github/workflows/julia-setup.yml

View workflow run for this annotation

GitHub Actions / Julia Testing

Invalid workflow file

The workflow is not valid. .github/workflows/julia-setup.yml (Line: 5, Col: 5): Unexpected value 'matrix'
os: [ubuntu-latest, macos-latest, windows-latest]
install-method: [pip]
runs-on: ${{ matrix.os }}
steps:
- name: Install Python
if: matrix.install-method == 'pip'
uses: actions/setup-python@v4
with:
python-version: '3.7'
# - name: Install R
# if: matrix.install-method == 'pip'
# uses: r-lib/actions/setup-r@v2
# with:
# r-version: 4.2.3
- name: Install Julia
if: matrix.install-method == 'pip'
uses: julia-actions/setup-julia@v1
- name: Install PyCall
if: matrix.install-method == 'pip'
run: julia -e "using Pkg; Pkg.add(\"PyCall\")"