-
Notifications
You must be signed in to change notification settings - Fork 2
67 lines (67 loc) · 1.92 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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') }}