Skip to content

Commit

Permalink
Adds GraphQL Query Conventions (#6846)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib authored Feb 9, 2024
1 parent e2308ce commit 1634426
Show file tree
Hide file tree
Showing 528 changed files with 4,966 additions and 455,462 deletions.
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

0 comments on commit 1634426

Please sign in to comment.