Skip to content

Remove test on Julia nightly and attempt to fix test on MacOS #62

Remove test on Julia nightly and attempt to fix test on MacOS

Remove test on Julia nightly and attempt to fix test on MacOS #62

Workflow file for this run

#This file is kept almost identical to test-macos
#We use two files in order to get two distinct badges for Linux and macOS.
name: macOS
on:
- push
- pull_request
defaults:
run:
shell: bash
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.10'
os:
# - ubuntu-latest
- macOS-latest
arch:
- x64
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: Install ROOT
run: |
ROOT_PATH="`julia ROOT.jl/.github/workflows/install_root_macos.jl`"
echo 'PATH="$PATH:'$ROOT_PATH\" >> "$GITHUB_ENV"
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest