Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds GraphQL Query Conventions #6846

Merged
merged 24 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 0 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,6 @@ jobs:
7.x
8.x

- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-

- name: Run Build
id: run-build
run: dotnet build ${{ matrix.path }} --framework net7.0 --verbosity q --property WarningLevel=0
Expand Down Expand Up @@ -311,13 +304,6 @@ jobs:
7.x
8.x

- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-

- name: Restore
run: ./build.sh restore

Expand Down Expand Up @@ -350,14 +336,6 @@ jobs:
7.x
8.x

- uses: actions/cache@v3
if: ${{ !cancelled() }}
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-

- name: Create All.sln
if: ${{ !cancelled() }}
run: ./build.sh CreateAllSln
Expand Down
15 changes: 0 additions & 15 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,6 @@ jobs:
7.x
8.x

- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-

- name: Run Build
id: run-build
run: dotnet build ${{ matrix.path }} --framework net7.0 --verbosity q --property WarningLevel=0
Expand Down Expand Up @@ -128,14 +121,6 @@ jobs:
7.x
8.x

- uses: actions/cache@v3
if: ${{ !cancelled() }}
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-

- name: Create All.sln
if: ${{ !cancelled() }}
run: ./build.sh CreateAllSln
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,6 @@ jobs:
id: get_version
run: echo "GIT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-

- name: Build Packages
run: |
./build.sh pack --SemVersion ${{ env.GIT_TAG }} --Configuration Release
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -323,3 +323,4 @@ conferences.db-wal
.server/
.nuke/
.mono/
packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static void MatchInlineSnapshot(

public static void MatchSnapshot(this Snapshot value)
=> value.Match();

public static void MatchSnapshot(
this object? value,
object? postFix = null,
Expand Down
Loading
Loading