Skip to content

Fix yml handling

Fix yml handling #10

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test-nocache:
strategy:
matrix:
go-version: [1.22.x, 1.23.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: false
- run: go test ./...