chore(deps): bump filippo.io/age from 1.0.0 to 1.2.1 #735
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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) |