Skip to content

Commit

Permalink
ci: add load_all() test to make sure package works
Browse files Browse the repository at this point in the history
  • Loading branch information
igboyes committed Feb 20, 2024
1 parent 1064934 commit 87dc973
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: ci

on:
push:
branches:
- "main"
pull_request:
branches:
- "main"

jobs:
load:
runs-on: ubuntu-22.04
if: github.event_name == 'pull_request'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup R
uses: r-lib/actions/setup-r@v2
- name: Setup R Dependencies
uses: r-lib/actions/setup-r-dependencies@v1
with:
extra-packages: |
devtools
- name: Load
run: R -e 'devtools::load_all()'

0 comments on commit 87dc973

Please sign in to comment.