Skip to content

fix(deps): update module github.com/urfave/cli/v2 to v2.25.7 (#29) #178

fix(deps): update module github.com/urfave/cli/v2 to v2.25.7 (#29)

fix(deps): update module github.com/urfave/cli/v2 to v2.25.7 (#29) #178

Workflow file for this run

# name of the action
name: test
# trigger on pull_request or push events
on:
pull_request:
push:
# pipeline to execute
jobs:
test:
runs-on: ubuntu-latest
container:
image: golang:1.18
steps:
- name: clone
uses: actions/checkout@v3
- name: test
run: |
go test -race -covermode=atomic -coverprofile=coverage.out ./...
- name: coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.out