Skip to content

chore: golang 1.22+ #37

chore: golang 1.22+

chore: golang 1.22+ #37

Workflow file for this run

name: Unit
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.22' ]
steps:
-
name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Test with Go
run: go test ./...