name: build on: [push, pull_request] jobs: build: name: Build runs-on: ubuntu-latest steps: - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.18 - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Download GQL schema run: "npx graphqurl https://api.ficsit.app/v2/query --introspect -H 'content-type: application/json' > schema.graphql" - name: Go Generate run: go generate -tags tools -x ./... - name: Test run: go test ./...