Skip to content

Commit

Permalink
Update docs/source/blog/intro_to_linting_and_ci.md
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Tyson <[email protected]>
  • Loading branch information
lauraporta and adamltyson authored Oct 20, 2023
1 parent e08bb77 commit aed0582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/blog/intro_to_linting_and_ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If you've ever followed a complex recipe, you'll understand the need for careful
CI stands for Continuous Integration. Think of it as a kitchen assistant who keeps tasting the soup at every stage, ensuring it's always delicious.

### How does CI work?
CI is a process that **runs** automatically every time you make a change to your code. It checks that your code is working as expected, and alerts you if there are any problems. Every time you push a change to your codebase on GitHub, CI (your cooking assistant) can install your package, run your tests, and check your code for errors as if it were a user interacting with your software.
CI is a process that **runs** automatically every time you make a change to your code. It checks that your code is working as expected, and alerts you if there are any problems. Every time you push a change to your codebase on GitHub, CI (your cooking assistant) can install your package, test it, and check your code for errors as if it were a user interacting with your software.

### If I don't use CI, what could go wrong?
Imagine baking a cake. If you don't taste-test as you go, you might end up with a salty dessert. Without CI, small errors in code can create big problems later.
Expand Down

0 comments on commit aed0582

Please sign in to comment.