-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (39 loc) · 976 Bytes
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
name: Check 📦
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- main
push:
branches:
- main
workflow_call:
concurrency:
group: check-test-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check-test:
name: ${{ vars.CI_IMAGE }}
runs-on: ubuntu-latest
container:
image: ${{ vars.CI_IMAGE }}
steps:
- name: Checkout project ⬇️
uses: actions/checkout@v4
- name: Check 📦
run: |
options(crayon.enabled = TRUE)
devtools::check(error_on="error", args=c("--no-tests"))
shell: Rscript {0}
- name: Test 🧪
if: >
!contains(github.event.commits[0].message, '[skip ci-tests]') && github.event.pull_request.draft == false
run: |
options(crayon.enabled = TRUE)
devtools::test()
shell: Rscript {0}