Skip to content

test: update order of benchmarks #17

test: update order of benchmarks

test: update order of benchmarks #17

Workflow file for this run

name: Test
on:
push:
tags:
- v*
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
go-version: [1.18.x, 1.19.x, 1.20.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