Jim Hester 99de2a93da Add R starter workflow
This adds a workflow for [R packages](https://www.r-project.org/). It
uses a [setup-r](https://github.com/r-lib/actions/tree/master/setup-r) action and two R packages
  - [remotes](https://remotes.r-lib.org/) - to install the R package dependencies
  - [rcmdcheck](https://github.com/r-lib/rcmdcheck) - to run and format the output of the package checking tool used in the R ecosystem.
2019-10-16 13:17:56 -04:00
2019-08-29 14:52:56 -04:00
2019-10-16 13:17:56 -04:00
2019-10-16 13:17:56 -04:00
2019-10-01 13:57:51 -07:00
2019-07-30 10:09:41 -07:00
2019-08-27 15:35:20 -07:00

Starter Workflows

These are the workflow files for helping people get started with GitHub Actions.

Directory structure:

  • ci: solutions for Continuous Integration
  • automation: solutions for automating workflows.
  • icons: svg icons for the relevant template

Each workflow must be written in YAML and have a .yml extension. They also need a corresponding .properties.json file that contains extra metadata about the workflow (this is displayed in the GitHub.com UI).

For example: ci/python-django.yml and ci/python-django.properties.json.

Valid properties:

  • name: the name shown in onboarding
  • description: the description shown in onboarding
  • iconName: the icon name in the relevant folder, for example django should have an icon icons/django.svg. Only SVG is supported at this time
  • categories: the categories that it will be shown under
Languages
TypeScript 100%