Skip to content

Bump github.com/Khan/genqlient from 0.6.1-0.20240216224014-7740a6a0cf04 to 0.7.0 #137

Bump github.com/Khan/genqlient from 0.6.1-0.20240216224014-7740a6a0cf04 to 0.7.0

Bump github.com/Khan/genqlient from 0.6.1-0.20240216224014-7740a6a0cf04 to 0.7.0 #137

Workflow file for this run

name: "go: build binary"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.head_ref }}/go
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ^1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v ./...