Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 1.66 KB

File metadata and controls

33 lines (27 loc) · 1.66 KB
layout root permalink
lesson
.
index.html

{% include gh_variables.html %}

GitHub is a distributed git platform used for code hosting and collaboration. It can also be used to automatically run the hosted code on Github's servers via GitHub Actions. Actions are workflow automation scripts. We'll learn how to develop on to make our code robust to errors, preserved, and reproducible.

The aim of this module is to:

  • explore what it means to build a CI/CD workflow
  • guide you through building a CI/CD workflow

Prerequisites

This assumes that you'll have some basic background with your command line, for example:

  1. How to execute custom shell scripts (if you are not familiar with the shell, click here)
  2. How to run python scripts (if you are not familiar with python, click here)
  3. How to interact with remotes in git (if you are not familiar with git, click here; for simplified authentication with the gh command line interface, see this version of the git training) {: .prereq}

The skills we'll focus on:

  1. Making scripts exit correctly
  2. Building a CI/CD workflow of unlimited potential
  3. Understanding how job runners work (and get access to your clones)
  4. Protecting secret information while allowing jobs to run {: .checklist}

{% include curriculum.html %}

{% include links.md %}