Skip to content

Commit 02045f1

Browse files
Merge pull request #6 from praisetompane/ci_cd
fix: add C/CD
2 parents afd7f9f + 1d85843 commit 02045f1

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed

.github/workflows/csharp.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: csharp
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Clone Repository
14+
uses: actions/checkout@v4
15+
16+
- name: Spell Check
17+
uses: rojopolis/spellcheck-github-actions@0.45.0
18+
with:
19+
output_file: spellcheck-output.txt

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# C#
2+
![build status](https://github.com/praisetompane/csharp/actions/workflows/csharp.yaml/badge.svg) <br>
23

34
## Objectives
45
- Notes: The C# Programming Language

todo.txt

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
- ecosystem/data
2+
- database/efcore
3+
4+
- ecosystem/web_and_internet_development:
5+
- asp.net_core
6+
7+
- language
8+
- https://www.freecodecamp.org/learn/foundational-c-sharp-with-microsoft/
9+
- History
10+
- C# Language Highlights: https://www.youtube.com/playlist?list=PLdo4fOcmZ0oU3ZLx6Ul1_HPrr6lFPIn9O
11+
12+
- ecosystem/testing:
13+
- nunit
14+
15+
- ecosystem/ecosystem/dev_environment
16+
17+
- ecosystem/ecosystem/infrastructure
18+
19+
- ecosystem/ecosystem/ci_cd
20+
21+
- canonical/idiomatic C# and .NET
22+
23+
- ecosystem/ecosystem/monitoring
24+
25+
- study reference implementations from the .NET team:
26+
- web:
27+
- shop:
28+
- https://github.com/dotnet/eshop
29+
- .NET 8 version: https://github.com/dotnet/eShop/tree/release/8.0
30+
31+
- eShopSupport:
32+
- https://github.com/dotnet/eshopsupport
33+
34+
- .NET: https://www.youtube.com/playlist?list=PLdo4fOcmZ0oVlZCosDDwS9fkVtrLYxGt6
35+
36+
- microservices: https://www.youtube.com/playlist?list=PLdo4fOcmZ0oUc2ShrReCS7KoBbPEONE0p
37+
38+
- security: https://www.youtube.com/playlist?list=PLdo4fOcmZ0oVIWiDzzwzOo8-Om_ew-Fi-
39+
40+
- .NET Conf 2024
41+
42+
- .NET Conf 2025
43+
44+
- study current implementations at Allan Gray:
45+
-
46+
47+
- .NET aspire:
48+
- https://learn.microsoft.com/en-us/credentials/applied-skills/build-distributed-apps-with-dotnet-aspire/
49+
50+
- ecosystem/ecosystem/cloud

0 commit comments

Comments
 (0)