Skip to content

add(.github): Dependabot #91

add(.github): Dependabot

add(.github): Dependabot #91

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17.x
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Download modules
run: go get -d -v ./...
- name: Test
run: go test -coverpkg=./... -coverprofile=coverage.txt -v ./...
- name: Send test coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}