swh:1:snp:0da231f3ffdb3226650880f1b61d5d5cdcbd749b
Raw File
Tip revision: fc4a4f5203227832477a576bfe01bc6efeb23f51 authored by satijalab on 04 October 2019, 13:38:05 UTC
Merge pull request #2122 from satijalab/develop
Tip revision: fc4a4f5
azure-pipelines.yml

# Build and test changes to SeuratWrappers
# Inspired by Jim Hester's Azure Pipelines tests
# https://github.com/jimhester/azuretest

trigger:
- master
- develop

pr:
- master
- develop
- release/*

jobs:
  - job: 'Linux'
    timeoutInMinutes: 30
    pool: Default
    variables:
      R_LIBS_USER: '$(Agent.BuildDirectory)/R/library'
    container: satijalab/online-workflows:latest
    steps:
      - script: |
          R CMD build .
          R CMD check --as-cran -no-manual Seurat_*
        displayName: 'R CMD Check'
back to top