ci: add unit and acceptance tests to PR workflow with SQLite

This commit is contained in:
2026-03-31 21:48:39 -07:00
parent ff7461973a
commit 6b70c3f388
3 changed files with 109 additions and 8 deletions
+2 -1
View File
@@ -4,11 +4,12 @@ on:
push:
branches:
- '**'
- '!main' # Skip main branch (release workflow handles that)
jobs:
unit-tests:
runs-on: ubuntu-latest
# Skip if this is an auto-generated version bump commit (handled by release workflow)
if: "!contains(github.event.head_commit.message, 'chore: bump version')"
steps:
- name: Checkout code