mirror of
https://github.com/msberends/AMR.git
synced 2025-07-08 22:41:52 +02:00
fixes
This commit is contained in:
6
.github/workflows/check-pr.yaml
vendored
6
.github/workflows/check-pr.yaml
vendored
@ -33,8 +33,8 @@ name: R-code-check-PR
|
||||
jobs:
|
||||
R-code-check-PR:
|
||||
# do not run if we are the authors - the other checks will already run
|
||||
if: ${{ github.event.comment.author_association }} != 'MEMBER' && ${{ github.event.comment.author_association }} != 'OWNER'
|
||||
|
||||
if: ${{ github.event.comment.author_association }} != 'CONTRIBUTOR' && ${{ github.event.comment.author_association }} != 'MEMBER' && ${{ github.event.comment.author_association }} != 'OWNER' && ${{ github.context.payload.comment.author_association }} != 'CONTRIBUTOR' && ${{ github.context.payload.comment.author_association }} != 'MEMBER' && ${{ github.context.payload.comment.author_association }} != 'OWNER'
|
||||
|
||||
runs-on: ${{ matrix.config.os }}
|
||||
|
||||
continue-on-error: ${{ matrix.config.allowfail }}
|
||||
@ -55,7 +55,7 @@ jobs:
|
||||
env:
|
||||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
|
||||
R_KEEP_PKG_SOURCE: yes
|
||||
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
12
.github/workflows/check.yaml
vendored
12
.github/workflows/check.yaml
vendored
@ -151,19 +151,9 @@ jobs:
|
||||
find . -name 'tinytest.Rout*' -exec cat '{}' \; || true
|
||||
shell: bash
|
||||
|
||||
- name: Show dir
|
||||
continue-on-error: true
|
||||
if: always()
|
||||
run: |
|
||||
echo ${GITHUB_WORKSPACE}
|
||||
echo "---"
|
||||
ls ${GITHUB_WORKSPACE}
|
||||
echo "---"
|
||||
ls ${GITHUB_WORKSPACE}.Rcheck
|
||||
|
||||
- name: Upload artifacts
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: artifacts-${{ matrix.config.os }}-r${{ matrix.config.r }}
|
||||
path: /home/runner/work/AMR/AMR.Rcheck
|
||||
path: ${GITHUB_WORKSPACE}.Rcheck
|
||||
|
Reference in New Issue
Block a user