updates version #771
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: Test Generate Schema | |
"on": | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: 0 0 * * * | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 3.1.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Generate | |
run: >- | |
dotnet run --project ./Tools/Generate/Generate.csproj -- ${{ | |
github.token }} ./Octokit.GraphQL/ | |
- name: Build | |
run: dotnet build |