Skip to content

Merge pull request #172 from dfe-analytical-services/2026_02_19_LiveData #420

Merge pull request #172 from dfe-analytical-services/2026_02_19_LiveData

Merge pull request #172 from dfe-analytical-services/2026_02_19_LiveData #420

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: shiny-tests
jobs:
automatedTests:
runs-on: ubuntu-latest
container:
image: ghcr.io/dfe-analytical-services/dfe-r-base:latest
options: --user root
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Restore renv snapshot
shell: Rscript {0}
run: |
if (!requireNamespace("renv", quietly = TRUE)) install.packages("renv")
renv::restore()
- name: Run tests
shell: Rscript {0}
run: |
shiny::runTests(".", assert = TRUE)
- name: Upload test results
if: failure()
uses: actions/upload-artifact@master
with:
name: ${{ runner.os }}-r${{ matrix.config.r }}-tests
path: tests