Skip to content

Bump torch from 2.1.2 to 2.2.0 #560

Bump torch from 2.1.2 to 2.2.0

Bump torch from 2.1.2 to 2.2.0 #560

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
#
# See https://github.com/r-lib/actions/tree/master/examples#readme for
# additional example workflows available for the R community.
name: R
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
r-version: ['4.0.0', '4.1.0', '4.1.1']
steps:
- uses: actions/checkout@v3
- name: Install pandoc
run: |
brew install pandoc
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v1
with:
r-version: ${{ matrix.r-version }}
- name: Install dependencies
run: |
install.packages(c("remotes", "rcmdcheck"))
remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}
- name: Check
run: |
R CMD build --no-build-vignettes .
shell: bash