Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chingc/demo-github-actions
A quickstart and reference for my future self.
https://github.com/chingc/demo-github-actions
demo quickstart reference
Last synced: 3 days ago
JSON representation
A quickstart and reference for my future self.
- Host: GitHub
- URL: https://github.com/chingc/demo-github-actions
- Owner: chingc
- License: mit
- Created: 2024-08-04T22:32:28.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-29T14:26:31.000Z (3 months ago)
- Last Synced: 2024-08-29T16:07:41.542Z (3 months ago)
- Topics: demo, quickstart, reference
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Demo
A quick demo of a basic GitHub Actions workflow.
## Overview
- Runs when changes are pushed
- Runs on a schedule
- Can be run manually from the GitHub UI
- Uses [actions/checkout](https://github.com/actions/checkout)
- Uses [actions/setup-python](https://github.com/actions/setup-python) with pip cache
- Installs `requirements.txt` and runs a simple test
- Includes `dependabot.yml` to automatically check for package updates## References
- [GitHub Docs: GitHub Actions](https://docs.github.com/en/actions)
- [GitHub Docs: Workflow syntax for GitHub Actions](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions)
- [GitHub Docs: Configuration options for the dependabot.yml file](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file)