Skip to content

DERDAT 1s duration option #72

DERDAT 1s duration option

DERDAT 1s duration option #72

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: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: Run tests on ${{ matrix.os }} for R version ${{ matrix.r-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['macos-latest', 'windows-latest']
r-version: ['4.2.2', 'latest']
steps:
- uses: actions/checkout@v3
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.r-version }}
- name: Install dependencies
run: |
echo 'options(repos=structure(c(CRAN="https://cran.csiro.au")))' >> .Rprofile
Rscript install.R
- name: Run all tests
run: Rscript run_all_tests.R