Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
26 changes: 14 additions & 12 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: CI-HS-SQLITE

on:
pull_request:
branches:
- master
- develop
branches:
- master
- develop
push:
branches:
branches:
- master
- develop
- develop
jobs:
build:
strategy:
Expand All @@ -17,16 +17,18 @@ jobs:
- macOS-latest
- ubuntu-latest
- windows-latest

runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: |
8.0.x
9.0.x
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Unit Tests
run: dotnet test
run: dotnet test --configuration Release
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
<RepositoryUrl>https://github.com/tbbuck/Hangfire.Storage.SQLite</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Hangfire Hangfire-Storage Hangfire-Extension SQLite</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<title>Hangfire Storage SQLite (tbbuck fork)</title>
<Description>An alternative SQLite storage for Hangfire. Maintained fork of RaisedApp/Hangfire.Storage.SQLite that modernises the SQLite dependency stack and remediates CVE-2025-6965.</Description>
<PackageReleaseNotes>
Expand Down
Loading