The GitHub Action workflows live in the .gitghub/workflows folder - seen from the root of the repository.
Inside this folder, you can have one or more workflows - each workflow is a YAML file (.yml) which declares what it going to happen on which events.
The repositories from the two previous exercises: "Social Coding" and "Bin Bash and the whole Shebang" both contained a workflow in that .github/workflows folder. It was the autograding job for GitHub Classroom: classroom.yml.
steps:
- uses: actions/checkout@v2
💡 HINTS: Discuss it in the group before you reach for help!
Optional:
Work together - as a team - to get this setup to work on every team member's PC
The GitHub Action workflows live in the
.gitghub/workflowsfolder - seen from the root of the repository.Inside this folder, you can have one or more workflows - each workflow is a YAML file (
.yml) which declares what it going to happen on which events.The repositories from the two previous exercises: "Social Coding" and "Bin Bash and the whole Shebang" both contained a workflow in that
.github/workflowsfolder. It was the autograding job for GitHub Classroom:classroom.yml..github/worflows/classroom.ymlin one (any) of your previous repositories and copy the content of the file as a code-snippets highlighted asyamlinto the comments of this issue.actions/checkout? Throw a link in the comments!💡 HINTS: Discuss it in the group before you reach for help!
gh rungh workflowgh authOptional:
Work together - as a team - to get this setup to work on every team member's PC