Skip to content

Tried weighting MSEs #30

Tried weighting MSEs

Tried weighting MSEs #30

Workflow file for this run

name: Run R Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-r-script:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
r-version: '4.3.3' # specify the version of R you need
- name: Install R packages
run: |
Rscript -e 'install.packages(c("here", "assertthat"))' # Add any packages your script needs
- name: Run R script
run: |
Rscript tests/error_tests.R