trentm / go-ecslog

`ecslog` CLI to pretty-print and filter log files in ecs-logging format
Apache License 2.0
7 stars 2 forks source link

ci: start using GH Actions for CI #8

Closed trentm closed 3 years ago

trentm commented 3 years ago

FWIW, with 'actions/cache@v2' usage:

    - uses: actions/cache@v2
      with:
        path: ~/go/pkg/mod
        key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
        restore-keys: |
          ${{ runner.os }}-go-

I didn't notice any speed up from a few limited runs. Without caching:

Screen Shot 2021-03-28 at 3 46 32 PM

with caching:

Screen Shot 2021-03-28 at 4 00 39 PM