Skip to content

Commit 4ea4a9b

Browse files
authored
Merge pull request #2 from Jean-Fischer/dev
First versions of pipelines
2 parents ae91ef3 + 8f0119c commit 4ea4a9b

File tree

48 files changed

+76
-7614
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+76
-7614
lines changed

.github/workflows/dependatbot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "nuget" # For .NET projects
4+
directory: "/Sharpen.Analyzer/" # Location of your project file (e.g., .csproj or .sln)
5+
schedule:
6+
interval: "daily" # Check for updates daily
7+
open-pull-requests-limit: 10 # Limit the number of open PRs
8+
target-branch: "main" # Branch to target for updates
9+
reviewers: # Optional: Assign reviewers
10+
- "Jean-Fischer"
11+
assignees: # Optional: Assign assignees
12+
- "Jean-Fischer"

.github/workflows/dotnet-tests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Run .NET Tests
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Setup .NET
15+
uses: actions/setup-dotnet@v4
16+
with:
17+
dotnet-version: '10.0.x'
18+
19+
- name: Restore dependencies
20+
run: dotnet restore ./Sharpen.Analyzer/Sharpen.Analyzer.sln
21+
22+
- name: Build
23+
run: dotnet build ./Sharpen.Analyzer/Sharpen.Analyzer.sln --no-restore --configuration Release
24+
25+
- name: Run tests
26+
run: dotnet test ./Sharpen.Analyzer/Sharpen.Analyzer.sln --no-build --verbosity normal --configuration Release

.github/workflows/publish-nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup .NET
1919
uses: actions/setup-dotnet@v4
2020
with:
21-
dotnet-version: '8.0.x'
21+
dotnet-version: '10.0.x'
2222

2323
- name: Restore dependencies (target project only)
2424
run: dotnet restore "Sharpen.Analyzer/Sharpen.Analyzer/Sharpen.Analyzer/Sharpen.Analyzer.csproj"

.kilocode/skills/openspec-apply-change/SKILL.md

Lines changed: 0 additions & 156 deletions
This file was deleted.

.kilocode/skills/openspec-archive-change/SKILL.md

Lines changed: 0 additions & 114 deletions
This file was deleted.

0 commit comments

Comments
 (0)