While working on our team library, which is based off of the vendor template, I realized that the build checks take up a lot of actions minutes. Of course, there are some modifications that could easily be made to reduce the number of minutes used, such as restructuring the checks so that it builds on one platform first before moving on to other platforms to ensure that the code is written correctly. However, one change that isn't as obvious is storing build artifacts using Github's cache feature. This speeds up builds by about 30 seconds per artifact. While actions minutes are cheap enough, it still is nice to reduce costs when possible by adding caching.
While working on our team library, which is based off of the vendor template, I realized that the build checks take up a lot of actions minutes. Of course, there are some modifications that could easily be made to reduce the number of minutes used, such as restructuring the checks so that it builds on one platform first before moving on to other platforms to ensure that the code is written correctly. However, one change that isn't as obvious is storing build artifacts using Github's cache feature. This speeds up builds by about 30 seconds per artifact. While actions minutes are cheap enough, it still is nice to reduce costs when possible by adding caching.