Skip to content

Bump github.com/vektah/gqlparser/v2 from 2.5.12 to 2.5.14 #61

Bump github.com/vektah/gqlparser/v2 from 2.5.12 to 2.5.14

Bump github.com/vektah/gqlparser/v2 from 2.5.12 to 2.5.14 #61

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: ['1.20', '1.21', '1.22']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Go ${{ matrix.go-version }} (${{ matrix.os }})
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Run vet
run: go vet ./...
- name: Test
run: go test -race ./...