Skip to content

feat: set to matrix tests #6

feat: set to matrix tests

feat: set to matrix tests #6

Workflow file for this run

name: Run tests
on: [pull_request, push]
jobs:
unit:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.18', '1.23' ]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- run: go test -v -cover ./...