Skip to content

update yml

update yml #1

Workflow file for this run

name: R (windows)
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@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}