Skip to content

chore(deps): bump filippo.io/age from 1.0.0 to 1.2.1 #735

chore(deps): bump filippo.io/age from 1.0.0 to 1.2.1

chore(deps): bump filippo.io/age from 1.0.0 to 1.2.1 #735

Workflow file for this run

# GitHub Actions Workflow definition for running unit tests and code coverage
name: unit-tests
on:
push:
branches:
- master
pull_request:
jobs:
unit-tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Go
uses: actions/[email protected]
with:
go-version-file: 'go.mod'
- name: Run Unit Tests
run: go test -race -coverprofile=coverage.out -covermode=atomic -v ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)