Skip to content

chore(deps): bump github.com/beevik/ntp from 1.0.0 to 1.2.0 #823

chore(deps): bump github.com/beevik/ntp from 1.0.0 to 1.2.0

chore(deps): bump github.com/beevik/ntp from 1.0.0 to 1.2.0 #823

Workflow file for this run

name: Coverage
on:
push:
tags:
- v*
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/[email protected]
with:
go-version: 1.20.x
- name: Get Go environment
id: go-env
run: |
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/[email protected]
with:
path: |
${{ steps.go-env.outputs.cache }}
${{ steps.go-env.outputs.modcache }}
key: test-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
test-${{ runner.os }}-go-
- name: Checkout code
uses: actions/[email protected]
- name: Download dependencies
run: go mod download && go mod tidy
- name: Run tests with coverage
run: make coverage
- name: Upload artifact
uses: actions/[email protected]
with:
name: coverage
path: profile.out
if-no-files-found: error
retention-days: 1
- name: Send coverage
uses: codecov/[email protected]
with:
file: profile.out
upload:
runs-on: ubuntu-latest
needs:
- test
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Download artifact
uses: actions/[email protected]
with:
name: coverage
- name: Send coverage
uses: codecov/[email protected]
with:
file: profile.out