Dot file locking. (#179)

This commit is contained in:
Nuno Cruces
2024-10-30 12:20:21 +00:00
committed by GitHub
parent 1ad1608228
commit b2e8636227
14 changed files with 178 additions and 25 deletions

View File

@@ -9,6 +9,10 @@ on:
- '**.wasm.bz2'
pull_request:
branches: [ "main" ]
paths:
- '**.go'
- '**.wasm'
- '**.wasm.bz2'
workflow_dispatch:
jobs:
@@ -52,6 +56,10 @@ jobs:
run: go test -v -tags sqlite3_flock ./...
if: matrix.os == 'macos-latest'
- name: Test dot locks
run: go test -v -tags sqlite3_dotlk ./...
if: matrix.os == 'macos-latest'
- name: Test no shared memory
run: go test -v -tags sqlite3_noshm ./...
if: matrix.os == 'ubuntu-latest'