bit of ci
Some checks failed
CI / Test (pull_request) Failing after 1m25s

This commit is contained in:
2025-07-15 19:30:52 +02:00
parent 34d17a18af
commit fcaff53fb4
9 changed files with 975 additions and 15 deletions

21
.gitea/workflows/ci.yaml Normal file
View File

@@ -0,0 +1,21 @@
name: CI
on:
pull_request:
workflow_call:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version-file: ".bun-version"
- run: bun install --frozen-lockfile
- name: Run lint
run: bun run check:code
- name: Run spellcheck
run: bun run check:spell