Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

v2.0 : Differiented between input and output strings on nullability rules in the format strategy configuraiton #210

v2.0 : Differiented between input and output strings on nullability rules in the format strategy configuraiton

v2.0 : Differiented between input and output strings on nullability rules in the format strategy configuraiton #210

Workflow file for this run

# This action executes on every push to master (usually as a result of a PR)
# and commit to a branch that is a PR against master
# to ensure the code base is up to standards
#
# Expected Standards
# -----------------------------
# 0 failed units
# 0 Build Errors, 0 Build Warnings
name: CI-CD
on:
push:
branches:
- master
pull_request:
branches:
- master
- 'release/**'
env:
SLN_PATH: ./src/graphql-aspnet.sln
jobs:
build:
name: Sanity Build
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
name: Checkout Code
# ---------------------------------------
# Install .NET Versions
# ---------------------------------------
- uses: actions/setup-dotnet@v2
name: Install .NET
with:
dotnet-version: |
6.x
7.x
8.x
# ---------------------------------------
# Configure the build environment
# ---------------------------------------
- name: Configure Build
run: ./build/configure-ci-build.ps1
shell: pwsh
# ---------------------------------------
# Restore, Build and Test
# ---------------------------------------
- name: Nuget Restore
run: dotnet restore ${{ env.SLN_PATH }}
- name: Build Solution
run: dotnet build ${{ env.SLN_PATH }} --no-restore
- name: Test Solution
run: dotnet test ${{ env.SLN_PATH }} --no-restore
Morty Proxy This is a proxified and sanitized view of the page, visit original site.