7 Automating work through continuous integration

 

This chapter covers

  • Automating code quality checks on each change using GitHub Actions
  • Building distributions for a variety of platforms
  • Publishing distributions to PyPI

Throughout the course of the previous chapters, you’ve built up a repertoire of tasks you execute each time you change your package so that you can maintain functionality and code quality. This is a huge stride in building confidence in changes, but doing all this locally on your own computer is still a big limitation, as you’ve already seen when interacting with the team over at CarCorp. You may have trouble remembering all the steps that go into verifying a change, and people just starting to work on the project may struggle even more. Even when they perform their due diligence, you can’t directly verify commands they run locally unless you’re supervising them. This is difficult enough with a team of a few people, but it becomes impossible in the open source world, where you may not even know the person contributing code changes.

In this chapter, you’ll create a pipeline for your package to bring automation to nearly every aspect of the packaging process—aside from writing the code, of course. Before getting too deep into the details of setting up this pipeline, you first need to understand the high-level flow.

Important

You can use the code companion (http://mng.bz/69A5) to check your work for the exercises in this chapter.

7.1 The continuous integration workflow

 
 

7.2 Continuous integration with GitHub Actions

 
 

7.2.1 A high-level GitHub Actions workflow

 
 
 

7.2.2 Understanding GitHub Actions terminology

 
 
 
 

7.2.3 Starting a GitHub Actions workflow configuration

 
 

7.3 Converting manual tasks to GitHub Actions

 
 
 
 

7.3.1 Running a job multiple times with a build matrix

 
 
 

7.3.2 Building Python package distributions for a variety of platforms

 
 
 
 

7.4 Publishing a package

 
 
 

Summary

 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage