.github
The community/.github
directory contains configuration files for GitHub features.
The workflows subdirectory contains configuration files for GitHub Actions workflows. These workflows automate tasks related to the repository, such as continuous integration (CI). The ci.yml
file defines a CI workflow that is triggered on every push to the main
branch and on every pull request targeting the main
branch. The workflow checks out the repository code, sets up Python, installs dependencies, and runs tests. This workflow helps to prevent bugs from being introduced into the main branch.
The dependabot.yml
file configures Dependabot to automatically update GitHub Actions dependencies daily.