Skip to content

chore: update changelog for version v1.1.0 #21

chore: update changelog for version v1.1.0

chore: update changelog for version v1.1.0 #21

Workflow file for this run

name: Test
on:
push:
tags:
- v*
branches:
- main
- dev
pull_request:
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x]
name: go-test
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v2
- name: Run the tests
run: make test
- name: Determine test coverage
run: make test-coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3