Rename all_LAs_view_top_table.png to All_LAs_view_top_table.png #197
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: Automated tests | |
jobs: | |
automatedTests: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
- name: Install git2r dependencies | |
run: sudo apt-get install -y libgit2-dev | |
- name: Cache renv packages | |
id: cache-renv | |
uses: actions/cache@v4 | |
with: | |
path: cache-renv | |
key: ${{ runner.os }}-renv-${{ hashFiles('**/renv.lock') }} | |
restore-keys: | | |
${{ runner.os }}-renv- | |
- uses: r-lib/actions/setup-renv@v2 | |
- name: Run tests | |
shell: Rscript {0} | |
run: | | |
shinytest2::test_app() | |