Skip to content

fixed typo in docs

fixed typo in docs #54

Workflow file for this run

name: Runtests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['lts']
r-version: ['4.2.1']
julia-arch: [x64]
os: [ubuntu-latest] # [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.r-version }}
- name: Install libcurl on Linux
if: runner.os == 'Linux'
run: sudo apt-get update -y && sudo apt-get install -y libcurl4-openssl-dev
- name: Install Dependencies for R
run: |
r = getOption("repos")
r["CRAN"] = "https://cloud.r-project.org/"
options(repos=r)
install.packages("splmm")
install.packages("glmnet")
shell: sudo Rscript {0}
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@v1
env:
LD_PRELOAD: /usr/lib/x86_64-linux-gnu/libcurl.so.4
LD_LIBRARY_PATH: /opt/R/${{ matrix.r-version }}/lib/R/lib
- uses: julia-actions/julia-processcoverage@v1
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: lcov.info