-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial wip on net9 changes * continued net9 * started work on openapi upgrade * started on fluent openapi validation stuffs * hmm * more work towards getting things wired in * everything but graphql working * nice tests pass?!? * nice tests pass?!? * well things work now, lets see how ci goes
- Loading branch information
1 parent
9891ead
commit 2bb9217
Showing
499 changed files
with
15,851 additions
and
7,836 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,6 +84,20 @@ permissions: | |
|
||
jobs: | ||
build: | ||
permissions: | ||
actions: read | ||
checks: write | ||
contents: read | ||
deployments: read | ||
id-token: none | ||
issues: write | ||
discussions: none | ||
packages: none | ||
pages: none | ||
pull-requests: write | ||
repository-projects: none | ||
security-events: none | ||
statuses: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
|
@@ -95,6 +109,10 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '8.0.x' | ||
- name: 🔨 Use .NET Core 9.0 SDK | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '9.0.x' | ||
- name: 🚒 dotnet workload restore | ||
continue-on-error: true | ||
run: | | ||
|
@@ -113,7 +131,7 @@ jobs: | |
- name: 🚦 Test | ||
id: test | ||
run: | | ||
dotnet .build/bin/Debug/.build.dll --target DotnetCoreTest Test TriggerCodeCoverageReports GenerateCodeCoverageReportCobertura GenerateCodeCoverageBadges GenerateCodeCoverageSummary GenerateCodeCoverageReport | ||
dotnet .build/bin/Debug/.build.dll --target DotnetCoreTest Test CollectCodeCoverage GenerateCodeCoverageReportCobertura GenerateCodeCoverageBadges GenerateCodeCoverageSummary GenerateCodeCoverageReport | ||
- name: 📦 Pack | ||
id: pack | ||
run: | | ||
|
@@ -122,18 +140,6 @@ jobs: | |
id: default | ||
run: | | ||
dotnet .build/bin/Debug/.build.dll --target Default --skip Restore Build Test Pack | ||
- name: 🏺 Publish coverage data | ||
if: always() | ||
uses: actions/[email protected] | ||
with: | ||
name: 'coverage' | ||
path: 'coverage/' | ||
- name: 📫 Publish Coverage | ||
if: (github.event_name != 'pull_request' && github.event_name != 'pull_request_target') || ((github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.user.login != 'dependabot[bot]') | ||
uses: codecov/[email protected] | ||
with: | ||
name: 'actions-${{ matrix.os }}' | ||
token: '${{ secrets.CODECOV_TOKEN }}' | ||
- name: 🏺 Publish logs | ||
if: always() | ||
uses: actions/[email protected] | ||
|
@@ -146,6 +152,30 @@ jobs: | |
with: | ||
name: 'test data' | ||
path: 'artifacts/test/' | ||
- name: 📫 Publish Test Results | ||
if: always() | ||
uses: EnricoMi/publish-unit-test-result-action@v2 | ||
with: | ||
files: 'artifacts/test/**/*.trx' | ||
- name: 🏺 Publish coverage data | ||
if: always() | ||
uses: actions/[email protected] | ||
with: | ||
name: 'coverage' | ||
path: 'coverage/' | ||
- name: 📫 Publish Coverage Comment | ||
if: github.event_name == 'pull_request' | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
with: | ||
header: 'Coverage' | ||
path: 'coverage/summary/SummaryGithub.md' | ||
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | ||
- name: 📫 Publish Codecov Coverage | ||
if: (github.event_name != 'pull_request' && github.event_name != 'pull_request_target') || ((github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.user.login != 'dependabot[bot]') | ||
uses: codecov/[email protected] | ||
with: | ||
name: 'actions' | ||
token: '${{ secrets.CODECOV_TOKEN }}' | ||
- name: 🏺 Publish NuGet Packages | ||
if: always() | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.