Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 1.49 KB

05-automation.md

File metadata and controls

33 lines (19 loc) · 1.49 KB

Automation

(we didn't really get a chance to work through this, plus it is far beyond where we expect people to actually reach in the tutorial. But in any case, a few links on advanced stuff)

  • Enable travis on a repo
  • Hooks, (e.g., a bash/python/R script triggered by a Git action)
  • Github pages

Continuous Integration

We cannot yet use continuous integration services with repos in the USEPA Github organization, but perhaps of interest.

Git Hooks

Git hooks allow scripts to be triggered by Git actions. For example, the way CI frequently works is that every time a new commit is pushed to Github, the CI build is triggered. Other applications include checks that your files have been updated, or automatically incrementing versions.

hooks in the Pro Git book

Enabling Github pages so your repo can have a website:


Return to Section 4 -Exporing repo history