Skip to content

chore(build): set minimum go to 1.23 to pass tests #2

chore(build): set minimum go to 1.23 to pass tests

chore(build): set minimum go to 1.23 to pass tests #2

Workflow file for this run

name: Run UIok tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.23", "1.24", "1.25"]
steps:
- uses: actions/checkout@v6
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: |
go mod tidy
- name: Run go unit tests
run: |
make test