Skip to content

Commit

Permalink
Commit inicial
Browse files Browse the repository at this point in the history
  • Loading branch information
macarenapineiro committed Sep 26, 2024
0 parents commit c647fc5
Show file tree
Hide file tree
Showing 20 changed files with 3,727 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .analyzers/stylecop.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{ "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"documentationRules": {
"companyName": "Universidad Católica del Uruguay",
"copyrightText": "Copyright (c) Programación II. Derechos reservados.",
"headerDecoration": "-----------------------------------------------------------------------",
"documentationCulture": "es-MX"
},
"orderingRules": {
"usingDirectivesPlacement":"outsideNamespace"
}
}
}
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
is_global = true

; [*.cs]

dotnet_diagnostic.IDE0090.severity = none
dotnet_diagnostic.CA1024.severity = none
dotnet_diagnostic.CA1303.severity = none
dotnet_diagnostic.CA1623.severity = none
dotnet_diagnostic.SA1623.severity = none
dotnet_diagnostic.CA1303.severity = none
39 changes: 39 additions & 0 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build, Test & Generate Docs

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
branches: [ main ]

jobs:
build-test-generate-docs:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup .NET 8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.303

- name: Setup Doxygen
run: sudo apt-get install -y doxygen

- name: Installing dependencies...
run: dotnet restore

- name: Building...
run: dotnet build

- name: Running test...
run: dotnet test

- name: Generating docs...
working-directory: docs
run: doxygen Doxyfile
continue-on-error: false
Loading

0 comments on commit c647fc5

Please sign in to comment.