Skip to content
#

builds

Here are 68 public repositories matching this topic...

builds
TheBusyBiscuit
TheBusyBiscuit commented Jul 6, 2021

To speed up build times, we should implement the actions/cache GitHub action for maven packages here.
An example would look like this:

    - name: Cache Maven packages
      uses: actions/cache@v2
      with:
        path: ~/.m2
        key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
        restore-keys: ${{ runner.os }}-m2

The key problem here is that we canno

Improve this page

Add a description, image, and links to the builds topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the builds topic, visit your repo's landing page and select "manage topics."

Learn more