Skip to content

feat: add support for encryption at rest #58

feat: add support for encryption at rest

feat: add support for encryption at rest #58

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Type check
run: bun run typecheck
- name: Run tests
run: bun test
- name: Build
run: bun run compile
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: burrow-linux-x64
path: burrow
retention-days: 7