Skip to content

spellcheck

spellcheck #65

Workflow file for this run

name: CI
concurrency:
group: ${{ github.head_ref }}.ci
cancel-in-progress: true
on:
push:
paths-ignore:
- 'README.md'
branches:
- main
pull_request:
paths-ignore:
- 'README.md'
branches:
- main
jobs:
test:
name: Julia ${{ matrix.version }} - R ${{ matrix.R }}- ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
# - '1.6'
- '1'
R:
- '4'
os:
# - ubuntu-latest # linux currently doesn't work because of lib issues
- macOS-latest
# - windows-latest # Windows compiles *everything* and takes far too long
arch:
- x64
steps:
- name: Checkout
uses: actions/checkout@v2
- name: R Setup
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.R }}
- name: R Dependencies
run: Rscript -e "install.packages(c('lme4','afex'))"
- name: Julia Setup
uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: Cache
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: Build
uses: julia-actions/julia-buildpkg@v1
- name: Test
uses: julia-actions/julia-runtest@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Coverage
uses: julia-actions/[email protected]
if: ${{ startsWith(matrix.os, 'macOS') && (matrix.version == '1') }}