File tree Expand file tree Collapse file tree 2 files changed +32
-2
lines changed Expand file tree Collapse file tree 2 files changed +32
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Test Generate Schema
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+ schedule :
9
+ - cron : " 0 0 * * *" # Run at 00:00 UTC everyday
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - uses : actions/checkout@v2
17
+
18
+ - name : Setup .NET Core
19
+ uses : actions/setup-dotnet@v1
20
+ with :
21
+ dotnet-version : 3.1.x
22
+
23
+ - name : Install dependencies
24
+ run : dotnet restore
25
+
26
+ - name : Generate
27
+ run : dotnet run --project ./Tools/Generate/Generate.csproj -- ${{ github.token }} ./Octokit.GraphQL/
28
+
29
+ - name : Build
30
+ run : dotnet build
Original file line number Diff line number Diff line change 1
1
# Writing Queries
2
2
3
- Note that this guide assumes you are familiar withthe GraphQL query syntax. If you're not,
3
+ Note that this guide assumes you are familiar with the GraphQL query syntax. If you're not,
4
4
you can read more about it [ here] ( https://graphql.org/learn/ ) .
5
5
6
6
## The Root Query
@@ -161,4 +161,4 @@ var query = new Query()
161
161
i .Title ,
162
162
}).ToList (),
163
163
});
164
- ```
164
+ ```
You can’t perform that action at this time.
0 commit comments