swh:1:snp:b1f86ebce403692a2c2ad98ea6d01904d9c3253a
Raw File
Tip revision: 49a1be0427f2f26a531eb468ba93eeb18d8a2edb authored by satijalab on 13 December 2019, 20:42:25 UTC
Merge pull request #2416 from satijalab/develop
Tip revision: 49a1be0
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