ficsit-cli-flake/.github/workflows/build.yaml
2021-12-04 00:35:13 +02:00

33 lines
789 B
YAML

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.17
- 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: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
skip-pkg-cache: true
skip-build-cache: true
- name: Build
run: go build -v -o ficsit-cli .
env:
CGO_ENABLED: 1