Fix property name as type #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check GraphQL Diff | |
on: | |
pull_request: | |
jobs: | |
check-diff: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
go-version: | |
- 1.20.6 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Go ${{ matrix.go-version}} | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version}} | |
- name: Run make build | |
run: | | |
make build | |
- name: Run make merge | |
run: | | |
make merge | |
- name: Run make check-diff | |
run: | | |
make check-diff |