Hello Github Actions

Learning notes from first time trying Github Actions workflows

Official documentation:

Basic examples:

Part I: Terminology and minimal file content

Good TL;DR from the docs:

An event automatically triggers the workflow, which contains a job. The job then uses steps to control the order in which actions are run.

  • "Github Actions" is the feature name. The smallest unit we can create is a workflow, represented by a file called .github/workflows/any-name-you-want.yml.
  • The workflow file uses the YAML syntax.
  • Required fields: on and jobs (which contains at least 1 job).
    • Each job is required to have runs-on and steps (which contains at least 1 step).
    • Each step is required to have run.
    • I've never seen anything other than runs-on: ubuntu-latest in examples or existing actions, but we can choose other runners.
  • Optional name string field:
  • Example of the most minimal workflow file possible: workflow-one.yml
on: [push, workflow_dispatch]
jobs:
  my-first-job:
    runs-on: ubuntu-latest
    steps:
      - run: echo "hello world"

Part II: multiple files & jobs, on

[!question] Thought I'm not sure in which cases I will ever need multiple workflows or multiple jobs.

Further read: List of contexts, literals, operators, functions, filters


In:

Links to this note

  • Est ex deserunt esse ut pariatur quis fugiat id velit commodo

    Ut anim fugiat laboris et eiusmod aliquip.

  • Est ex deserunt esse ut pariatur quis fugiat id velit commodo

    Ut anim fugiat laboris et eiusmod aliquip.

  • Est ex deserunt esse ut pariatur quis fugiat id velit commodo

    Ut anim fugiat laboris et eiusmod aliquip.

  • Est ex deserunt esse ut pariatur quis fugiat id velit commodo

    Ut anim fugiat laboris et eiusmod aliquip.

  • Est ex deserunt esse ut pariatur quis fugiat id velit commodo

    Ut anim fugiat laboris et eiusmod aliquip.

  • Est ex deserunt esse ut pariatur quis fugiat id velit commodo

    Ut anim fugiat laboris et eiusmod aliquip.

  • Est ex deserunt esse ut pariatur quis fugiat id velit commodo

    Ut anim fugiat laboris et eiusmod aliquip.