Skip to content

chore(deps): bump github.com/vektah/gqlparser/v2 from 2.5.11 to 2.5.15 #26

chore(deps): bump github.com/vektah/gqlparser/v2 from 2.5.11 to 2.5.15

chore(deps): bump github.com/vektah/gqlparser/v2 from 2.5.11 to 2.5.15 #26

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- "**.md"
push:
branches:
- main
paths-ignore:
- "**.md"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.21.1"
- name: Cache Go modules
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install dependencies
run: go mod download
- name: Set up gotestfmt
uses: haveyoudebuggedit/gotestfmt-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Tidy Go modules
run: go mod tidy
- name: Test
run: |
go test -v -race -json ./... 2>&1 | gotestfmt