Skip to content

Add degree and time of adoption diagnostic function #7

Add degree and time of adoption diagnostic function

Add degree and time of adoption diagnostic function #7

Workflow file for this run

# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
workflow_dispatch:
name: Build and upload the tar.gz
jobs:
R-build:
runs-on: ubuntu-latest
name: Build the package
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
r-version: 'release'
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r-dependencies@v2
- name: Build the package
run: R CMD build .
- name: Upload the artifact
uses: actions/upload-artifact@v4
with:
name: package
path: "*.tar.gz"