Skip to content

Update DESCRIPTION

Update DESCRIPTION #16

Workflow file for this run

name: R
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
windows:
name: windows
runs-on: windows-latest
strategy:
matrix:
r-version: ['4.3.1']
steps:
- uses: actions/checkout@v2
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v1
with:
r-version: ${{ matrix.r-version }}
- name: Set CRAN mirror
run: echo 'options(repos = c(CRAN = "https://cloud.r-project.org/"))' >> $GITHUB_WORKSPACE/.Rprofile
- name: Install dependencies
run: |
install.packages("Rfast")
shell: Rscript {0}
macos:
name: macos
runs-on: macos-latest
strategy:
matrix:
r-version: ['4.3.1']
steps:
- uses: actions/checkout@v2
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v1
with:
r-version: ${{ matrix.r-version }}
- name: Set CRAN mirror
run: echo 'options(repos = c(CRAN = "https://cloud.r-project.org/"))' >> $GITHUB_WORKSPACE/.Rprofile
- name: Install dependencies
run: |
install.packages("Rfast")
shell: Rscript {0}
linux:
name: linux
runs-on: ubuntu-latest
strategy:
matrix:
r-version: ['4.3.1']
steps:
- uses: actions/checkout@v2
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v1
with:
r-version: ${{ matrix.r-version }}
- name: Set CRAN mirror
run: echo 'options(repos = c(CRAN = "https://cloud.r-project.org/"))' >> $GITHUB_WORKSPACE/.Rprofile
- name: Install dependencies
run: |
install.packages("Rfast")
shell: Rscript {0}