Skip to content

Bump github.com/99designs/gqlgen from 0.17.43 to 0.17.45 #205

Bump github.com/99designs/gqlgen from 0.17.43 to 0.17.45

Bump github.com/99designs/gqlgen from 0.17.43 to 0.17.45 #205

Workflow file for this run

name: pull-request
on:
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
CGO_ENABLED: "1"
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-go@v3
with:
go-version: 'stable'
cache: true
- run: go mod download
- run: go test -cover -coverprofile=coverage.txt -covermode=atomic ./...