Skip to content

Feature: Upgrade .NET from Core 3.1 to 8.0 (and Native AOT!) #1110

Feature: Upgrade .NET from Core 3.1 to 8.0 (and Native AOT!)

Feature: Upgrade .NET from Core 3.1 to 8.0 (and Native AOT!) #1110

Workflow file for this run

name: Test Generate Schema
"on":
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: 0 0 * * *
workflow_dispatch:
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 }} ./src/Octokit.GraphQL/
- name: Build
run: dotnet build