Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8d56a7d
Adds 'test' event handler and makes a lot of usage boilerplate virtual
Sharkwald Mar 2, 2026
e5d78b5
tidies some methods to expression bodies
Sharkwald Mar 2, 2026
c5c389b
Fixes for some potential concurrency issues
Sharkwald Mar 2, 2026
5ef3f61
Reshuffles namespacing to make it clear which handlers handle which e…
Sharkwald Mar 3, 2026
a71eeb8
refactors member joined handler
Sharkwald Mar 3, 2026
a95e38f
Minor refactor of karma repository
Sharkwald Mar 3, 2026
dd33acf
Better handling of command objects and removal of the first unnecessa…
Sharkwald Mar 3, 2026
241c1e3
Removes commands that had been superceded by repositories
Sharkwald Mar 3, 2026
0aa5346
formatting
Sharkwald Mar 3, 2026
e98ba97
formatting
Sharkwald Mar 3, 2026
38ed2e0
minor tweaks of karma reaction map
Sharkwald Mar 3, 2026
a522ddb
SAVEPOINT
Sharkwald Mar 5, 2026
94d8e9c
Adds rudementary LLM integration
Sharkwald Mar 8, 2026
d5c496c
SAVEPOINT
Sharkwald Mar 11, 2026
aa09698
Add gender, sass level, full name, and misc info fields to Member
Sharkwald Mar 13, 2026
c28a0d7
Updates git ignore to not include memberseeddata
Sharkwald Mar 13, 2026
d736ceb
SAVEPOINT
Sharkwald Mar 16, 2026
c8b3826
SAVEPOINT
Sharkwald Mar 16, 2026
65c3ae8
SAVEPOINT
Sharkwald Mar 16, 2026
f422891
SAVEPOINT
Sharkwald Mar 17, 2026
20b4e76
SAVEPOINT
Sharkwald Mar 17, 2026
3ba38d6
Adds logging into conversation message handler
Sharkwald Mar 17, 2026
7397f2a
Adds github workflow for building & testing .net port
Sharkwald Mar 17, 2026
28a26dd
Moves .net workflow to correct location
Sharkwald Mar 17, 2026
2ceae3a
Merge branch 'master' into feature/bottomlydotnet
Sharkwald Mar 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: .NET Build and Test

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

jobs:
build-and-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'

- name: Install Aspire workload
run: dotnet workload install aspire

- name: Restore dependencies
run: dotnet restore bottomly.net/bottomly.net.slnx

- name: Build
run: dotnet build bottomly.net/bottomly.net.slnx --no-restore --configuration Release

- name: Test
run: dotnet test bottomly.net/bottomly.net.slnx --no-build --configuration Release --verbosity normal
Loading
Loading