-
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.
Merge pull request #86 from Particular/GitHubSync-20250124-000019
GitHubSync update - main
- Loading branch information
Showing
3 changed files
with
32 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Code Analysis | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
- release-* | ||
workflow_dispatch: | ||
jobs: | ||
code-analysis: | ||
uses: particular/shared-workflows/.github/workflows/code-analysis.yml@main |
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 |
---|---|---|
|
@@ -4,16 +4,6 @@ on: | |
env: | ||
DOTNET_NOLOGO: true | ||
jobs: | ||
build: | ||
name: Linux | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Setup .NET SDK | ||
uses: actions/[email protected] | ||
with: | ||
global-json-file: global.json | ||
- name: Restore | ||
id: restore | ||
run: dotnet restore src | ||
call-shared-nuget-audit: | ||
uses: particular/shared-workflows/.github/workflows/nuget-audit.yml@main | ||
secrets: inherit |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
<add key="particular packages" value="https://f.feedz.io/particular-software/packages/nuget/index.json" /> | ||
</packageSources> | ||
<packageSourceMapping> | ||
<packageSource key="nuget.org"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
<packageSource key="particular packages"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
<packageSource key="local packages"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
</packageSourceMapping> | ||
</configuration> |