GitHub Actions
Learn GitHub Actions and how to work with Docker in GitHub Actions.
A modern application isn’t complete without a proper CI/CD process in place. CI/CD involves taking code from a code repository, automatically building artifacts, and testing against it to ensure the software is ready to deliver to another environment. In this lesson, we’ll learn to work with Docker in various CI environments.
Working with Docker in CI is no different than working in a local environment. Most commands that we use on our local machine will be applicable in the CI environment. In the local environment, we write code, build, run, and test. Similarly, in the CI environment, we build our code, run tests, push artifacts to the code artifacts repository, and ...