Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 685 Bytes

setting-up-github-actions.md

File metadata and controls

16 lines (12 loc) · 685 Bytes

Setting up GitHub actions

Enable GitHub Actions

GitHub actions are enabled by default. To check your repositories settings:
Go to repository → Settings → Actions → General
The default setting should be "Allow all actions and reusable workflows"

Settings GitHub actions

Create the workflow directory structure

GitHub actions is working with .yml files, which define pipelines (workflows), steps and conditions. These .yml files will be placed in the folder /.github/workflows/
First step is to create this folder.

Next step (Structure of Workflows)

Continue with the tutorial