https://github.com/eficode-academy/github-actions-katas
This repository contains a set of exercises to learn Github Actions.
https://github.com/eficode-academy/github-actions-katas
exercises github-actions katas
Last synced: 24 days ago
JSON representation
This repository contains a set of exercises to learn Github Actions.
- Host: GitHub
- URL: https://github.com/eficode-academy/github-actions-katas
- Owner: eficode-academy
- License: mit
- Created: 2021-07-16T08:38:00.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-04T12:01:25.000Z (about 2 months ago)
- Last Synced: 2025-04-01T09:32:06.531Z (about 1 month ago)
- Topics: exercises, github-actions, katas
- Language: Java
- Homepage:
- Size: 2.39 MB
- Stars: 29
- Watchers: 1
- Forks: 392
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Github Actions katas
## Introduction
This repository contains a set of exercises to learn Github Actions.
### Exercises
* [Setup](./labs/setup.md)
* [Build app](./labs/build-app.md)
* [Extending the Pipeline](./labs/extend-pipeline.md)
* [Storing Artifacts](./labs/storing-artifacts.md)
* [Building Docker images](./labs/docker-image.md)
* [Systems test](./labs/systems-test.md)
* [Reusable workflows](./labs/reusable.md)
* [Pull Request based workflow](./labs/pr-workflow.md)
* [Build app on multiple environments](./labs/matrix-builds.md)### Rough exercises (not yet ready)
* [Reusing build cache ](./labs/build-cache.md)
* [Selfhosted runners](./labs/selfhosted-runner.md)## Resources
* [Understand a workflow file](https://docs.github.com/en/actions/learn-github-actions/introduction-to-github-actions#understanding-the-workflow-file)
* [List of starter workflow files for many different languages](https://github.com/actions/starter-workflows/tree/main/ci)
* [A curated list of awesome things related to GitHub Actions](https://github.com/sdras/awesome-actions)
* [Githubs own Hands On Labs](https://github.com/ps-actions-sandbox/ActionsFundamentals)