Skip to content

chore(deps): bump github.com/vektah/gqlparser/v2 from 2.5.1 to 2.5.3 #34

chore(deps): bump github.com/vektah/gqlparser/v2 from 2.5.1 to 2.5.3

chore(deps): bump github.com/vektah/gqlparser/v2 from 2.5.1 to 2.5.3 #34

Workflow file for this run

name: Build CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
gql:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.18
- name: lint
uses: golangci/golangci-lint-action@v3.4.0
with:
github-token: ${{ github.token }}
- name: test
run: go test -v -race ./...
- name: "Check: go fmt"
run: |
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
gofmt -s -l -d .
echo "Please run: go fmt ./..."
exit 1
fi
if [ "$(go mod tidy -v | wc -l)" -gt 0 ]; then
go mod tidy -v
echo "Please run: go mod tidy"
exit 1
fi
- name: build
run: |
make build