Storage implementations for AT Protocol OAuth applications. Provides a simple key-value storage interface with implementations for in-memory and SQLite backends.

Add test workflow for CI on push/PR

Changed files
+18
.github
workflows
+18
.github/workflows/test.yml
··· 1 + name: Test 2 + 3 + on: 4 + push: 5 + branches: [main] 6 + pull_request: 7 + branches: [main] 8 + 9 + jobs: 10 + test: 11 + runs-on: ubuntu-latest 12 + steps: 13 + - uses: actions/checkout@v5 14 + - uses: denoland/setup-deno@v2 15 + with: 16 + deno-version: v2.x 17 + - name: Run CI checks 18 + run: deno task ci