Skip to content

Add benchmark infrastructure #102

Add benchmark infrastructure

Add benchmark infrastructure #102

Workflow file for this run

name: iox CI
on:
- push
- pull_request
permissions:
contents: read
checks: write
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 'stable', '1.25.x' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Vet
run: go vet ./...
- name: Test (race + coverage)
run: |
go test -race -covermode=atomic -coverprofile=coverage.out ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: coverage.out
fail_ci_if_error: true