Skip to content

update sum

update sum #21

Workflow file for this run

name: workflow
on:
push:
tags:
- '*.*.*'
branches:
- '**'
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- run: make build
- run: make test
- run: make coverage
- uses: codecov/codecov-action@v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./cover.out
verbose: true
slug: larscom/go-cache
- name: Run proxy.golang.org
if: startsWith(github.ref, 'refs/tags/')
run: curl https://proxy.golang.org/github.com/larscom/go-cache/@v/${{ github.ref_name }}.info