Skip to content

Simplify testing middleware (#16) #25

Simplify testing middleware (#16)

Simplify testing middleware (#16) #25

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.22.x]
name: go-test
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- name: Run the tests
run: go test -race ./...