Skip to content

HotChocolate 14 + Dotnet 8 + Central Package Management #1

HotChocolate 14 + Dotnet 8 + Central Package Management

HotChocolate 14 + Dotnet 8 + Central Package Management #1

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: ['master']
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6
7
8
- name: Build, Test and Sonar
uses: swisslife-oss/actions/pull-request@main
with:
sonar_token: ${{ secrets.SONAR_TOKEN }}
sonar_project_key: 'SwissLife-OSS_HotChocolateExtensions'
sonar_project_name: 'hotchocolate-extensions'
pr_number: ${{ github.event.pull_request.number }}
pr_source_branch: ${{ github.head_ref }}
pr_target_branch: ${{ github.base_ref }}
github_repository: ${{ github.repository }}
sonar_exclusions: ${{ vars.SONAR_EXCLUSIONS }}