-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
141 additions
and
62 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,40 @@ | ||
name: .NET Test | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
paths-ignore: | ||
- '**/*.md' | ||
pull_request: | ||
paths-ignore: | ||
- '**/*.md' | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
DOTNET_NOLOGO: true | ||
DOTNET_CLI_TELEMETRY_OPTOUT: true | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
token: ${{ secrets.FIKA_GITMODULES }} | ||
|
||
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '8.0.x' | ||
|
||
- name: Install dependencies | ||
run: dotnet restore --configfile Nuget.config | ||
|
||
- name: Build | ||
run: dotnet build --nologo --no-restore --configuration Debug | ||
|
||
- name: Test | ||
run: dotnet test --nologo --no-restore --no-build --blame-hang-timeout 1min | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "References"] | ||
path = References | ||
url = https://github.com/project-fika/References.git |
This file was deleted.
Oops, something went wrong.
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,61 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": "." | ||
} | ||
], | ||
"tasks": { | ||
"version": "2.0.0", | ||
"options": { | ||
"env": { | ||
"DOTNET_NOLOGO": "yes", | ||
"DOTNET_CLI_TELEMETRY_OPTOUT": "yes" | ||
} | ||
}, | ||
"tasks": [ | ||
{ | ||
"label": "dotnet: restore", | ||
"type": "shell", | ||
"command": "dotnet restore --nologo", | ||
}, | ||
{ | ||
"label": "dotnet: build debug", | ||
"type": "shell", | ||
"command": "dotnet build --nologo --no-restore --configuration Debug", | ||
"dependsOrder": "sequence", | ||
"dependsOn": "dotnet: restore", | ||
"group": { | ||
"kind": "build" | ||
} | ||
}, | ||
{ | ||
"label": "dotnet: build release", | ||
"type": "shell", | ||
"command": "dotnet build --nologo --no-restore --configuration Release", | ||
"dependsOrder": "sequence", | ||
"dependsOn": "dotnet: restore", | ||
"group": { | ||
"kind": "build" | ||
} | ||
}, | ||
{ | ||
"label": "dotnet: build gold-master", | ||
"type": "shell", | ||
"command": "dotnet build --nologo --no-restore --configuration GoldMaster", | ||
"dependsOrder": "sequence", | ||
"dependsOn": "dotnet: restore", | ||
"group": { | ||
"kind": "build" | ||
} | ||
} | ||
] | ||
}, | ||
"settings": { | ||
"window.title": "Fika.Plugin" | ||
}, | ||
"extensions": { | ||
"recommendations": [ | ||
"ms-dotnettools.csharp" | ||
] | ||
} | ||
} |
File renamed without changes.
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
File renamed without changes.
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
Submodule References
added at
c79307