-
Notifications
You must be signed in to change notification settings - Fork 178
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
94 changed files
with
157 additions
and
763 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,22 +15,22 @@ on: | |
workflow_dispatch: | ||
|
||
env: | ||
RESOURCE_GROUP_NAME: ondfisk | ||
WEBAPP_NAME: c5 | ||
BUILD_CONFIGURATION: Release | ||
|
||
jobs: | ||
build: | ||
name: Build & Test | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup | ||
uses: actions/setup-dotnet@v4.0.0 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 6.0.x | ||
dotnet-version: 8.0.x | ||
|
||
- name: Restore | ||
run: dotnet restore | ||
|
@@ -39,37 +39,37 @@ jobs: | |
run: dotnet build --configuration ${{ env.BUILD_CONFIGURATION }} --no-restore | ||
|
||
- name: Test | ||
run: dotnet test -p:CollectCoverage=true -p:CoverletOutput=TestResults/ -p:CoverletOutputFormat=opencover | ||
run: dotnet test --configuration ${{ env.BUILD_CONFIGURATION }} --no-build | ||
|
||
- uses: actions/upload-artifact@v3 | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: lib | ||
path: bin/**/*.nupkg | ||
|
||
documentation: | ||
name: Generate Documentation | ||
deploy: | ||
name: Deploy | ||
|
||
# if: ${{ github.ref == 'refs/heads/master' }} | ||
|
||
runs-on: ubuntu-latest | ||
container: | ||
image: corentinaltepe/doxygen | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
permissions: | ||
packages: write | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
|
||
- name: Install GraphViz | ||
run: apk update && apk add graphviz font-bitstream-type1 ghostscript-fonts | ||
|
||
- name: Generate Documentation | ||
run: doxygen Doxyfile | ||
needs: | ||
- build | ||
|
||
- uses: actions/upload-artifact@v3 | ||
steps: | ||
- name: Download artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: docs | ||
path: docs/ | ||
|
||
# deploy: | ||
# name: Deploy | ||
# runs-on: ubuntu-latest | ||
# if: ${{ github.ref == 'refs/heads/master' }} | ||
# needs: | ||
# - build | ||
# environment: Production | ||
name: lib | ||
|
||
- name: Push package to GitHub packages | ||
run: dotnet nuget push ./**/*.nupkg --source "https://nuget.pkg.github.com/$GITHUB_REPOSITORY_OWNER/index.json" --api-key ${{ secrets.GITHUB_TOKEN }} |
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
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
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.