Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: R (MacOS)
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
macos:
name: macos
runs-on: macos-latest
strategy:
matrix:
r-version: ['4.3.2']
steps:
- uses: actions/checkout@v2
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v2
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}