GitHub Actions
CI is a Continuous Integration tool. It uses branches to track changes. The branch for the main branch is called "main". Jobs are run on the "ubuntu-latest" version of Ubuntu. Steps in the build step use the actions/checkout@v2 action.
Shortcut: template.main
Filename pattern: .github/workflows/*.yml
name: CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2