Skip to content

update api

update api #186

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- "docs/**"
- "README.md"
- "CHANGELOG.md"
- "LICENSE"
jobs:
Test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ^1.21
id: go
- name: Get dependencies
run: go get -v -t -d ./...
- name: Install Task
uses: arduino/setup-task@v1
with:
version: 3.x
- name: Mock Test Data
run: task gen_test
- name: Test
run: go test -v -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.out
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}