Skip to content

process the ast.FuncLit node as is. #31

process the ast.FuncLit node as is.

process the ast.FuncLit node as is. #31

Workflow file for this run

name: testing
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.20', '1.21', '1.22' ]
steps:
- name: Check out
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
cache: true
- name: Test
run: make test