Report TLI & RMSEA as NA
when there's not enough information to com…
#32
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
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
push: | |
branches: [analytDerivs, master] | |
pull_request: | |
branches: [analytDerivs, master] | |
name: R-CMD-check | |
jobs: | |
R-CMD-check: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: rcmdcheck | |
- name: Install system dependencies | |
run: sudo apt-get update; sudo apt-get install -y make | |
shell: bash | |
# New step: Build the package with 'make install' | |
- name: Install package | |
run: make install | |
shell: bash | |
- name: roxygenize | |
run: make roxygen | |
shell: bash | |
- name: Install package | |
run: make install | |
shell: bash | |
- uses: r-lib/actions/check-r-package@v2 | |
with: | |
args: 'c("--resave-data","--no-manual", "--no-install")' | |
#- name: check | |
# run: R CMD check | |
# shell: bash | |
- name: Show testthat output | |
if: always() | |
run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true | |
shell: bash | |
- name: Upload check results | |
if: failure() | |
uses: actions/upload-artifact@main | |
with: | |
name: ${{ runner.os }}-r${{ matrix.config.r }}-results | |
path: check |