version bump; add badges, test/publish workflows

This commit is contained in:
2025-01-09 16:55:20 -05:00
parent e5e3e65efd
commit a7e7a0a063
4 changed files with 51 additions and 6 deletions

23
.github/workflows/tests.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, reopened]
jobs:
tests:
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: Test
run: bun test